note in assets test
License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>
Jeromy committed
Feb 5, 2016 at 16:00 UTC
5c5ad7ad710e7b9f54955f46a5e4a48ab93be6fe
1 file changed
+4
-2
assets/assets_test.go
+4
-2
@@ -9,12 +9,14 @@ import (
9
10
// TestEmbeddedDocs makes sure we don't forget to regenerate after documentation change
11
func TestEmbeddedDocs(t *testing.T) {
12
- t.Skip("skipping for now, paths are hard")
12
testNFiles(initDocPaths, 6, t, "documents")
13
}
14
15
func TestDirIndex(t *testing.T) {
17
- t.Skip("skipping for now, paths are hard")
16
+ t.Skip("skipping for now, code being tested is currently unused")
17
+ // TODO: import assets during init.
18
+ // this will require figuring out how to set the right paths up for
19
+ // referencing the code from its gx path
20
testNFiles(initDirIndex, 2, t, "assets")
21
}
22