aasm/spec/models/no_initial_state.rb

26 lines
350 B
Ruby
Raw Normal View History

class NoInitialState
include AASM
aasm do
state :read
state :ended
event :foo do
transitions :to => :ended, :from => [:read]
end
end
end
2015-06-26 07:46:58 +00:00
class NoInitialStateMultiple
include AASM
aasm(:left) do
state :read
state :ended
event :foo do
transitions :to => :ended, :from => [:read]
end
end
end