mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
helpers: Remove unused code
This commit is contained in:
parent
0fb31e4a82
commit
91ffc76b24
2 changed files with 0 additions and 20 deletions
|
@ -14,9 +14,7 @@
|
|||
package helpers
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"io/ioutil"
|
||||
"reflect"
|
||||
"strings"
|
||||
"testing"
|
||||
|
@ -160,23 +158,6 @@ func BenchmarkReaderContains(b *testing.B) {
|
|||
}
|
||||
}
|
||||
|
||||
// kept to compare the above
|
||||
func _BenchmarkReaderContains(b *testing.B) {
|
||||
b.ResetTimer()
|
||||
for i := 0; i < b.N; i++ {
|
||||
for i, this := range containsBenchTestData {
|
||||
bs, err := ioutil.ReadAll(StringToReader(this.v1))
|
||||
if err != nil {
|
||||
b.Fatalf("Failed %s", err)
|
||||
}
|
||||
result := bytes.Contains(bs, this.v2)
|
||||
if result != this.expect {
|
||||
b.Errorf("[%d] got %t but expected %t", i, result, this.expect)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestUniqueStrings(t *testing.T) {
|
||||
in := []string{"a", "b", "a", "b", "c", "", "a", "", "d"}
|
||||
output := UniqueStrings(in)
|
||||
|
|
|
@ -67,7 +67,6 @@ func (filepathBridge) Separator() string {
|
|||
}
|
||||
|
||||
var fpb filepathBridge
|
||||
var sanitizeRegexp = regexp.MustCompile("[^a-zA-Z0-9./_-]")
|
||||
|
||||
// MakePath takes a string with any characters and replace it
|
||||
// so the string could be used in a path.
|
||||
|
|
Loading…
Reference in a new issue