Sha256: 0ce2d91dabaa0938b0abfdf14cadfcea66a29076b7cabbdfc70df28c4a2fa591
Contents?: true
Size: 1.06 KB
Versions: 22
Compression:
Stored size: 1.06 KB
Contents
require 'active_support/core_ext/module/aliasing' require 'rspec/matchers/have' module RSpec #:nodoc: module Matchers #:nodoc: class Have #:nodoc: def failure_message_for_should_with_errors_on_extensions return "expected #{relativities[@relativity]}#{@expected} errors on :#{@args[0]}, got #{@actual}" if @collection_name == :errors_on return "expected #{relativities[@relativity]}#{@expected} error on :#{@args[0]}, got #{@actual}" if @collection_name == :error_on return failure_message_for_should_without_errors_on_extensions end alias_method_chain :failure_message_for_should, :errors_on_extensions def description_with_errors_on_extensions return "have #{relativities[@relativity]}#{@expected} errors on :#{@args[0]}" if @collection_name == :errors_on return "have #{relativities[@relativity]}#{@expected} error on :#{@args[0]}" if @collection_name == :error_on return description_without_errors_on_extensions end alias_method_chain :description, :errors_on_extensions end end end
Version data entries
22 entries across 22 versions & 1 rubygems