clarion/spec/support/matchers/has_errors_on.rb

7 lines
164 B
Ruby
Raw Permalink Normal View History

RSpec::Matchers.define :have_error_on do |expected|
match do |actual|
expect(actual).to_not be_valid
expect(actual.errors).to have_key expected
end
end