Open
Description
One more question. Is there any best practice for testing flows. I stubbed all my jobs perform
method and run
Resque.inline = true
process = MyProcess.create_process
process.enqueue!
but I see that there is a 3 seconds delay between the execution of the jobs. So the test takes a very long time.
One more problem I faced is that I can't stub tasks. I would like to be able to stub this task to check that flow calls it and then write a separate test for each of the jobs. As I can see in the source code that taskinator includes my flow into instances of Taskinator::Executor
.
Thanks
Originally posted by @bguban in #6 (comment)