के साथ गतिशील प्रारंभिक राज्यों का परीक्षण करना मुझे StateMachine
एस Factory Girl
के साथ परीक्षण करने में कुछ समस्याएं आ रही हैं। ऐसा लगता है कि फैक्टरी गर्ल वस्तुओं को शुरू करने के तरीके से नीचे है।फैक्टरीगर्ल और स्टेटमाचिन
क्या मुझे कुछ याद आ रही है, या यह उतना आसान नहीं है जितना होना चाहिए?
class Car < ActiveRecord::Base
attr_accessor :stolen # This would be an ActiveRecord attribute
state_machine :initial => lambda { |object| object.stolen ? :moving : :parked } do
state :parked, :moving
end
end
Factory.define :car do |f|
end
तो, प्रारंभिक अवस्था stolen
विशेषता आरंभीकरण के दौरान सेट है, इस पर निर्भर करता है।
Car.new(:stolen => true)
## Broadly equivalent to
car = Car.new do |c|
c.attributes = {:stolen => true}
end
car.initialize_state # StateMachine calls this at the end of the main initializer
assert_equal car.state, 'moving'
हालांकि क्योंकि फैक्टरी लड़की को व्यक्तिगत रूप से अपने ओवरराइड (factory_girl/proxy/build.rb देखें) सेट करने से पहले वस्तु initializes, इसका मतलब है कि प्रवाह है और अधिक की तरह:
यह ठीक काम करने के लिए, क्योंकि ActiveRecord अपने प्रारंभकर्ता के हिस्से के रूप गुण सेट लगता हैFactory(:car, :stolen => true)
## Broadly equivalent to
car = Car.new
car.initialize_state # StateMachine calls this at the end of the main initializer
car.stolen = true
assert_equal car.state, 'moving' # Fails, because the car wasn't 'stolen' when the state was initialized