Sha256: 59bc67f7da3dee74b1a2619b55e9990dd158698f61dd168005e2fa8479e2a0be

Contents?: true

Size: 531 Bytes

Versions: 8

Compression:

Stored size: 531 Bytes

Contents

module RSpec
  module Matchers
    # rubocop:disable Style/PredicateName
    def have_same_file_content_like(expected)
      RSpec.deprecate('`have_same_file_content_like`', :replacement => '`have_same_file_content_as`')

      have_same_file_content_as(expected)
    end
    # rubocop:enable Style/PredicateName

    def a_file_with_same_content_like(expected)
      RSpec.deprecate('`a_file_with_same_content_like`', :replacement => '`a_file_with_same_content_as`')

      a_file_with_same_content_as(expected)
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
aruba-0.14.14 lib/aruba/matchers/deprecated/file.rb
aruba-0.14.13 lib/aruba/matchers/deprecated/file.rb
honeybadger-4.5.3 vendor/bundle/ruby/2.6.0/gems/aruba-0.14.12/lib/aruba/matchers/deprecated/file.rb
aruba-0.14.12 lib/aruba/matchers/deprecated/file.rb
aruba-0.14.11 lib/aruba/matchers/deprecated/file.rb
aruba-0.14.10 lib/aruba/matchers/deprecated/file.rb
aruba-0.14.9 lib/aruba/matchers/deprecated/file.rb
aruba-0.14.8 lib/aruba/matchers/deprecated/file.rb