mirror of
https://github.com/aasm/aasm
synced 2023-03-27 23:22:41 -04:00
10 lines
262 B
Ruby
10 lines
262 B
Ruby
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
|
|
end
|