1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00
aasm/spec/models/this_name_better_not_be_in_use.rb

12 lines
155 B
Ruby
Raw Normal View History

2013-04-21 12:43:03 -04:00
class ThisNameBetterNotBeInUse
include AASM
aasm do
state :initial
state :symbol
state :string
state :array
state :proc
end
end