summaryrefslogtreecommitdiffstats
path: root/helpers/path_test.go
diff options
context:
space:
mode:
authorbep <bjorn.erik.pedersen@gmail.com>2015-01-27 14:03:48 +0100
committerbep <bjorn.erik.pedersen@gmail.com>2015-01-27 15:09:01 +0100
commit8ad4fd05d8dff450c8ceffd58483497d9f0e6d88 (patch)
tree7b5afa8dbf767594a62d1d643bcac630db68d42b /helpers/path_test.go
parentb155e8b4cbde764f326ac989b060c805da26e176 (diff)
Split Windows and Unix specific path tests
Diffstat (limited to 'helpers/path_test.go')
-rw-r--r--helpers/path_test.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/helpers/path_test.go b/helpers/path_test.go
index f4d3dd303..366ed6e4c 100644
--- a/helpers/path_test.go
+++ b/helpers/path_test.go
@@ -395,7 +395,6 @@ func TestAbsPathify(t *testing.T) {
}
data := []test{
{os.TempDir(), filepath.FromSlash("/work"), filepath.Clean(os.TempDir())}, // TempDir has trailing slash
- // todo bep breaks on Windows: {filepath.FromSlash("/banana/../dir/"), filepath.FromSlash("/work"), filepath.FromSlash("/dir")},
{"dir", filepath.FromSlash("/work"), filepath.FromSlash("/work/dir")},
}