def test_run_task(self): f = Mock() task = Task("foobaz") task << Chute.create(f)() Hellbox.add_task(task) Hellbox.run_task("foobaz") assert f.called
def test_run_task(self): f = Mock() task = Task('foobaz') task.start_chain(Chute.create(f)()) Hellbox.add_task(task) Hellbox.run_task('foobaz') assert f.called
def test_run_task_with_requirements(self): f = Mock() f2 = Mock() task = Task("fooqaaz") task.requires("foobar") task << Chute.create(f)() task2 = Task("foobar") task2 << Chute.create(f2)() Hellbox.add_task(task) Hellbox.add_task(task2) Hellbox.run_task("fooqaaz") assert f2.called
def test_run_task_with_requirements(self): f = Mock() f2 = Mock() task = Task('fooqaaz') task.requires('foobar') task.start_chain(Chute.create(f)()) task2 = Task('foobar') task2.start_chain(Chute.create(f2)()) Hellbox.add_task(task) Hellbox.add_task(task2) Hellbox.run_task('fooqaaz') assert f2.called
def test_usage(self): task = Task("build") task.describe("Does the building") task << Bar(2, grade=3) >> Foo() task << Foo() >> Bar(level=2) Hellbox.add_task(task) task = Task("package") task.describe("Does the packaging\nZips and tars") task << Foo() Hellbox.add_task(task) assert Hellbox.usage() == USAGE
def test_find_task_by_name(self): Hellbox.add_task(Task("foo")) assert Hellbox.find_task_by_name("foo")