Reinsert deleted test
authorbep <bjorn.erik.pedersen@gmail.com>
Sun, 9 Nov 2014 21:40:15 +0000 (22:40 +0100)
committerspf13 <steve.francia@gmail.com>
Fri, 14 Nov 2014 03:47:06 +0000 (22:47 -0500)
This test was deleted by mistake in owenwaller's contribution to add more tests.

I haven't looked closer, there may be more missing.

helpers/path_test.go

index 4a10bd9d4badb11f6069c1a43b1c24e7dfc5a242..a7cca35bb1e64799ae0b0ed9cf8e6ac34122ad42 100644 (file)
@@ -55,6 +55,29 @@ func TestMakePathToLower(t *testing.T) {
        }
 }
 
+func TestMakePathRelative(t *testing.T) {
+       type test struct {
+               inPath, path1, path2, output string
+       }
+
+       data := []test{
+               {"/abc/bcd/ab.css", "/abc/bcd", "/bbc/bcd", "/ab.css"},
+               {"/abc/bcd/ab.css", "/abcd/bcd", "/abc/bcd", "/ab.css"},
+       }
+
+       for i, d := range data {
+               output, _ := MakePathRelative(d.inPath, d.path1, d.path2)
+               if d.output != output {
+                       t.Errorf("Test #%d failed. Expected %q got %q", i, d.output, output)
+               }
+       }
+       _, error := MakePathRelative("a/b/c.ss", "/a/c", "/d/c", "/e/f")
+
+       if error == nil {
+               t.Errorf("Test #%d failed. Expected error")
+       }
+}
+
 func TestMakeTitle(t *testing.T) {
        type test struct {
                input, expected string