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

59 lines
1.8 KiB
Ruby
Raw Normal View History

2012-12-03 22:27:47 -05:00
require 'spec_helper'
class Payment
include AASM
aasm do
state :initialised, :initial => true
state :filled_out
state :authorised
event :fill_out do
transitions :from => :initialised, :to => :filled_out
end
event :authorise do
transitions :from => :filled_out, :to => :authorised
end
end
end
describe 'state machine' do
let(:payment) {Payment.new}
it 'starts with an initial state' do
expect(payment.aasm.current_state).to eq(:initialised)
expect(payment).to respond_to(:initialised?)
expect(payment).to be_initialised
2012-12-03 22:27:47 -05:00
end
it 'allows transitions to other states' do
expect(payment).to respond_to(:fill_out)
expect(payment).to respond_to(:fill_out!)
2012-12-03 22:27:47 -05:00
payment.fill_out!
expect(payment).to respond_to(:filled_out?)
expect(payment).to be_filled_out
2012-12-03 22:27:47 -05:00
expect(payment).to respond_to(:authorise)
expect(payment).to respond_to(:authorise!)
2012-12-03 22:27:47 -05:00
payment.authorise
expect(payment).to respond_to(:authorised?)
expect(payment).to be_authorised
2012-12-03 22:27:47 -05:00
end
it 'denies transitions to other states' do
expect {payment.authorise}.to raise_error(AASM::InvalidTransition)
expect {payment.authorise!}.to raise_error(AASM::InvalidTransition)
2012-12-03 22:27:47 -05:00
payment.fill_out
expect {payment.fill_out}.to raise_error(AASM::InvalidTransition)
expect {payment.fill_out!}.to raise_error(AASM::InvalidTransition)
2012-12-03 22:27:47 -05:00
payment.authorise
expect {payment.fill_out}.to raise_error(AASM::InvalidTransition)
expect {payment.fill_out!}.to raise_error(AASM::InvalidTransition)
2012-12-03 22:27:47 -05:00
end
it 'defines constants for each state name' do
expect(Payment::STATE_INITIALISED).to eq(:initialised)
expect(Payment::STATE_FILLED_OUT).to eq(:filled_out)
expect(Payment::STATE_AUTHORISED).to eq(:authorised)
end
2012-12-03 22:27:47 -05:00
end