diff options
author | Valery Piashchynski <[email protected]> | 2021-06-09 02:31:33 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-06-09 02:31:33 +0300 |
commit | 6103228ee951c7c8bf5d425471b7c440980c6044 (patch) | |
tree | 698c28d3af1814f49958455a6c518ed62032830f /tests/plugins/server/server_plugin_test.go | |
parent | 4f3e16892479db4bd8280a46987f3105e46e5c96 (diff) |
- Update CI (add new tests)
- Add path scan with regex (find .php/.ph/.sh scripts). When found, try
to stat path for potential fix for the [file not exists problem]
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'tests/plugins/server/server_plugin_test.go')
-rw-r--r-- | tests/plugins/server/server_plugin_test.go | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/tests/plugins/server/server_plugin_test.go b/tests/plugins/server/server_plugin_test.go index c0c3c993..06c9eb50 100644 --- a/tests/plugins/server/server_plugin_test.go +++ b/tests/plugins/server/server_plugin_test.go @@ -23,22 +23,13 @@ func TestAppPipes(t *testing.T) { vp := &config.Viper{} vp.Path = "configs/.rr.yaml" vp.Prefix = "rr" - err = container.Register(vp) - if err != nil { - t.Fatal(err) - } - - err = container.Register(&server.Plugin{}) - if err != nil { - t.Fatal(err) - } - err = container.Register(&Foo{}) - if err != nil { - t.Fatal(err) - } - - err = container.Register(&logger.ZapLogger{}) + err = container.RegisterAll( + vp, + &server.Plugin{}, + &Foo{}, + &logger.ZapLogger{}, + ) if err != nil { t.Fatal(err) } |