(t *testing.T)
| 11 | ) |
| 12 | |
| 13 | func TestRemoveDB(t *testing.T) { |
| 14 | err := kvstore.RemoveStore(Tea.Root + "/data/stores/test2.store") |
| 15 | if err != nil { |
| 16 | t.Fatal(err) |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | func TestIsValidName(t *testing.T) { |
| 21 | var a = assert.NewAssertion(t) |
nothing calls this directly
no test coverage detected