aasm/spec/models/no_initial_state.rb

13 lines
167 B
Ruby

class NoInitialState
include AASM
aasm do
state :read
state :ended
event :foo do
transitions :to => :ended, :from => [:read]
end
end
end