1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00
aasm/spec/models/active_record/no_scope.rb
2015-07-01 23:41:44 +12:00

21 lines
474 B
Ruby

class NoScope < ActiveRecord::Base
include AASM
aasm :create_scopes => false do
state :pending, :initial => true
state :running
event :run do
transitions :from => :pending, :to => :running
end
end
end
class MultipleNoScope < ActiveRecord::Base
include AASM
aasm :left, :create_scopes => false do
state :pending, :initial => true
state :running
event :run do
transitions :from => :pending, :to => :running
end
end
end