mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
82a0888995
Rationale: Test failing on Windows with errors like this:
utils_test.go:177: Error: Could not remove file "f".
Error: remove C:\Users\appveyor\AppData\Local\Temp\utils_test_747965610:
The process cannot access the file because it is being used by another
process.
This reverts commit 6b28e38cea
.
Sorry for my premature merge of Pull Request #818.
28 lines
696 B
Go
28 lines
696 B
Go
package utils
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
|
|
|
|
func TestCutUsageMessage(t *testing.T) {
|
|
tests := []struct{
|
|
message string
|
|
cutMessage string
|
|
}{
|
|
{"", ""},
|
|
{" Usage of hugo: \n -b, --baseUrl=...", ""},
|
|
{"Some error Usage of hugo: \n", "Some error"},
|
|
{"Usage of hugo: \n -b --baseU", ""},
|
|
{"CRITICAL error for usage of hugo ", "CRITICAL error for usage of hugo"},
|
|
{"Invalid short flag a in -abcde", "Invalid short flag a in -abcde"},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
message := cutUsageMessage(test.message)
|
|
if message != test.cutMessage {
|
|
t.Errorf("Expected %#v, got %#v", test.cutMessage, message)
|
|
}
|
|
}
|
|
}
|