Sha256: 2fb4025662552fdbe801a8c4fc7d34836817daa3f6a12180f2252cf15168ae6f

Contents?: true

Size: 922 Bytes

Versions: 21

Compression:

Stored size: 922 Bytes

Contents

# frozen_string_literal: true

require 'spec_helper'

describe Sinclair::Matchers::ChangeClassMethod do
  subject(:matcher) { described_class.new(method) }

  let(:method)   { :the_method }
  let(:klass)    { Class.new }

  describe '#on' do
    it do
      expect(matcher.on(klass.new))
        .to be_a(Sinclair::Matchers::ChangeClassMethodOn)
    end

    it 'returns an add_class_method_to' do
      expect(matcher.on(klass))
        .to eq(Sinclair::Matchers::ChangeClassMethodOn.new(klass, method))
    end
  end

  describe '#matches?' do
    it do
      expect { matcher.matches?(proc {}) }
        .to raise_error(
          SyntaxError, 'You should specify which class the method is being changed on' \
          "change_class_method(:#{method}).on(klass)"
        )
    end
  end

  describe '#supports_block_expectations?' do
    it do
      expect(matcher).to be_supports_block_expectations
    end
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
sinclair-2.1.1 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-2.1.0 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-2.0.1 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-2.0.0 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-1.16.3 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-1.16.2 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-1.16.1 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-1.16.0 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-1.15.0 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-1.14.2 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-1.14.1 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-1.14.0 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-1.13.0 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-1.12.1 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-1.12.0 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-1.11.0 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-1.10.0 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-1.9.0 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-1.8.0 spec/lib/sinclair/matchers/change_class_method_spec.rb
sinclair-1.7.0 spec/lib/sinclair/matchers/change_class_method_spec.rb