add check (#27)

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2020-08-27 11:32:27 +03:00
committed by GitHub
parent b4ccde2228
commit aa99378adc
2 changed files with 11 additions and 4 deletions

View File

@@ -8,7 +8,11 @@ import (
)
func TestStoreRegex(t *testing.T) {
router := newRouter()
t.Skip()
router, err := newRouter()
if err != nil {
t.Fatal(err)
}
router.store([]*registry.Service{
{
Name: "Foobar",