change: remove startproject in python version, move all features to go version

This commit is contained in:
debugtalk
2022-03-27 10:00:02 +08:00
parent e382f692e4
commit ee86bb9292
29 changed files with 1152 additions and 893 deletions
+3 -3
View File
@@ -6,8 +6,8 @@ import (
)
func TestBoomerStandaloneRun(t *testing.T) {
buildHashicorpPlugin()
defer removeHashicorpPlugin()
buildHashicorpGoPlugin()
defer removeHashicorpGoPlugin()
testcase1 := &TestCase{
Config: NewConfig("TestCase1").SetBaseURL("http://httpbin.org"),
@@ -25,7 +25,7 @@ func TestBoomerStandaloneRun(t *testing.T) {
NewStep("TestCase3").CallRefCase(&TestCase{Config: NewConfig("TestCase3")}),
},
}
testcase2 := &demoTestCaseJSONPath
testcase2 := &demoTestCaseWithPluginJSONPath
b := NewBoomer(2, 1)
go b.Run(testcase1, testcase2)