aboutsummaryrefslogtreecommitdiff
path: root/utils/fileutils_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'utils/fileutils_test.go')
-rw-r--r--utils/fileutils_test.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/utils/fileutils_test.go b/utils/fileutils_test.go
new file mode 100644
index 0000000..176d856
--- /dev/null
+++ b/utils/fileutils_test.go
@@ -0,0 +1,15 @@
+package utils
+
+import (
+ "path/filepath"
+ "testing"
+)
+
+func TestTrimTrailingSeparator(t *testing.T) {
+ if TrimTrailingSeparator("test"+string(filepath.Separator)) != "test" {
+ t.Error("Seprator should have been trimmed")
+ }
+ if TrimTrailingSeparator("test") != "test" {
+ t.Error("Path should not have changed")
+ }
+}