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

10 lines
220 B
Ruby
Raw Normal View History

2017-08-04 08:19:22 -04:00
require 'spec_helper'
describe "nil as first argument" do
let(:guard) { GuardArgumentsCheck.new }
it 'does not raise errors' do
expect { guard.mark_as_reviewed(nil, 'second arg') }.not_to raise_error
end
end