There was an error while loading. Please reload this page.
1 parent 138eece commit 0ffa7c3Copy full SHA for 0ffa7c3
1 file changed
internal/native/verifier_test.go
@@ -18,29 +18,6 @@ func TestVerifier_Version(t *testing.T) {
18
fmt.Println("version: ", Version())
19
}
20
21
-func TestVerifier_Verify(t *testing.T) {
22
- t.Run("invalid args returns an error", func(t *testing.T) {
23
-
24
- v := Verifier{}
25
- args := []string{
26
- "--file",
27
- "/non/existent/path.json",
28
- "--hostname",
29
- "localhost",
30
- "--port",
31
- "55827",
32
- "--state-change-url",
33
- "http://localhost:55827/__setup/",
34
- "--loglevel",
35
- "info",
36
- }
37
38
- res := v.Verify(args)
39
40
- assert.Error(t, res)
41
- })
42
-}
43
44
func TestVerifier_NewForApplication(t *testing.T) {
45
v := NewVerifier("pact-go", "test")
46
0 commit comments