diff --git a/lib/shoulda/matchers/active_model/validate_comparison_of_matcher.rb b/lib/shoulda/matchers/active_model/validate_comparison_of_matcher.rb index 47a673f3a..6d54db019 100644 --- a/lib/shoulda/matchers/active_model/validate_comparison_of_matcher.rb +++ b/lib/shoulda/matchers/active_model/validate_comparison_of_matcher.rb @@ -13,12 +13,12 @@ module ActiveModel # # # RSpec # RSpec.describe Person, type: :model do - # it { should validate_comparison_of(:gpa).greater_than(10) } + # it { should validate_comparison_of(:gpa).is_greater_than(10) } # end # # # Minitest (Shoulda) # class PersonTest < ActiveSupport::TestCase - # should validate_comparison_of(:gpa).greater_than(10) + # should validate_comparison_of(:gpa).is_greater_than(10) # end # # #### Qualifiers