Skip to content

Commit

Permalink
cut module tests from test_engine
Browse files Browse the repository at this point in the history
  • Loading branch information
greyfenrir committed Dec 29, 2015
1 parent 4129e85 commit 137129a
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions tests/test_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ def setUp(self):
self.obj = EngineEmul()
self.paths = local_paths_config()

def test_jmx(self):
configs = [
__dir__() + "/../bzt/10-base.json",
__dir__() + "/json/jmx.json",
self.paths
]
self.obj.configure(configs)
self.obj.prepare()
self.obj.run()
self.obj.post_process()
# def test_jmx(self):
# configs = [
# __dir__() + "/../bzt/10-base.json",
# __dir__() + "/json/jmx.json",
# self.paths
# ]
# self.obj.configure(configs)
# self.obj.prepare()
# self.obj.run()
# self.obj.post_process()

def test_requests(self):
configs = [
Expand All @@ -46,27 +46,27 @@ def test_double_exec(self):
self.obj.run()
self.obj.post_process()

def test_grinder(self):
configs = [
__dir__() + "/../bzt/10-base.json",
__dir__() + "/json/grinder.json",
self.paths
]
self.obj.configure(configs)
self.obj.prepare()
self.obj.run()
self.obj.post_process()
# def test_grinder(self):
# configs = [
# __dir__() + "/../bzt/10-base.json",
# __dir__() + "/json/grinder.json",
# self.paths
# ]
# self.obj.configure(configs)
# self.obj.prepare()
# self.obj.run()
# self.obj.post_process()

def test_gatling(self):
configs = [
__dir__() + "/../bzt/10-base.json",
__dir__() + "/json/gatling.json",
self.paths
]
self.obj.configure(configs)
self.obj.prepare()
self.obj.run()
self.obj.post_process()
# def test_gatling(self):
# configs = [
# __dir__() + "/../bzt/10-base.json",
# __dir__() + "/json/gatling.json",
# self.paths
# ]
# self.obj.configure(configs)
# self.obj.prepare()
# self.obj.run()
# self.obj.post_process()

def test_unknown_module(self):
configs = [
Expand Down

0 comments on commit 137129a

Please sign in to comment.