(t *testing.T)
| 45 | } |
| 46 | |
| 47 | func TestLibrary(t *testing.T) { |
| 48 | path, err := mockPath() |
| 49 | if err != nil { |
| 50 | t.Fatal(err) |
| 51 | } |
| 52 | |
| 53 | err = readPkg("write-good", path, 0) |
| 54 | if err != nil { |
| 55 | t.Fatal(err) |
| 56 | } |
| 57 | |
| 58 | if !system.IsDir(filepath.Join(path, "write-good")) { |
| 59 | t.Fatal("unable to find 'write-good' in StylesPath") |
| 60 | } |
| 61 | |
| 62 | if !system.FileExists(filepath.Join(path, "write-good", "E-Prime.yml")) { |
| 63 | t.Fatal("unable to find 'E-Prime' in StylesPath") |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | func TestLocalZip(t *testing.T) { |
| 68 | path, err := mockPath() |
nothing calls this directly
no test coverage detected
searching dependent graphs…