It seems to me that if I use FactoryGirl to create a model whose states are handle using the state_machine gem, then state_machine will then trigger.
FactoryGirl.create(:order)
How can I prevent that?
|
It seems to me that if I use FactoryGirl to create a model whose states are handle using the state_machine gem, then state_machine will then trigger.
How can I prevent that? |
|||
|
|
|
In fact I traced the issue to rspec not running without the observers: see this SO question |
|||
|
|
|
If your state machine is trigger by AR call back you try skipping the callbacks using something described below: How to skip ActiveRecord callbacks? And there is also a gem which makes this work conveniently. ( I suspect the state_machine might be using callback hooks make the state changes as well). |
|||
|
|