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

15 lines
390 B
Ruby
Raw Normal View History

require 'spec_helper'
describe "guards with params" do
let(:guard) { GuardWithParams.new }
let(:user) {GuardParamsClass.new}
it "list permitted states" do
expect(guard.aasm.states({:permitted => true}, user).map(&:name)).to eql [:reviewed]
end
it "list no states if user is blank" do
expect(guard.aasm.states({:permitted => true}, nil).map(&:name)).to eql []
end
end