summaryrefslogtreecommitdiffstats
path: root/source/file_test.go
diff options
context:
space:
mode:
authorMatthieu Harlé <harle.matthieu@gmail.com>2017-08-09 15:42:50 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-08-09 19:35:40 +0200
commit0abdeeef6740a3cbba0db95374853d040f2022b8 (patch)
tree50a882ec6d5e53f2d8eae024c5533a9a7eefa980 /source/file_test.go
parente2f8664ef4278e14ce1e21376804321fa013f570 (diff)
source: Normalize UniqueID between Windows & Linux
Diffstat (limited to 'source/file_test.go')
-rw-r--r--source/file_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/file_test.go b/source/file_test.go
index a152b4bf5..64ad6fb46 100644
--- a/source/file_test.go
+++ b/source/file_test.go
@@ -37,6 +37,11 @@ func TestFileUniqueID(t *testing.T) {
f4 := ss.NewFile(filepath.FromSlash("test2/index.md"))
assert.NotEqual(t, f3.UniqueID(), f4.UniqueID())
+
+ f5l := ss.NewFile("test3/index.md")
+ f5w := ss.NewFile(filepath.FromSlash("test3/index.md"))
+
+ assert.Equal(t, f5l.UniqueID(), f5w.UniqueID())
}
func TestFileString(t *testing.T) {