automat icon indicating copy to clipboard operation
automat copied to clipboard

Test helper that asserts a given transition occurred

Open markrwilliams opened this issue 7 years ago • 1 comments

Automat should have a test helper that asserts a given transition occurred after running a block of code.

It might go a little something like this:

with assertTransitioned(someMachineInstance, 
                        through=[SomeMachine.state1, SomeMachine.state2]):
    someMachineInstance.blah()
    someMachineInstance.otherblah()

markrwilliams avatar Jan 18 '17 06:01 markrwilliams

@tomprince suggested this after working on http://twistedmatrix.com/trac/ticket/8993. This could use #36

markrwilliams avatar Jan 18 '17 06:01 markrwilliams