Sha256: dd773aa6f06f1b5a367b236d32e555ef16c42f160024da0813fac3f7fa58286d

Contents?: true

Size: 1.11 KB

Versions: 8

Compression:

Stored size: 1.11 KB

Contents

# frozen_string_literal: true

RSpec.describe Mutant::Subject::Method::Singleton do

  let(:object)  { described_class.new(context, node) }
  let(:node)    { s(:defs, s(:self), :foo, s(:args)) }

  let(:context) do
    Mutant::Context.new(scope, instance_double(Pathname))
  end

  let(:scope) do
    Class.new do
      def self.foo; end

      def self.name
        'Test'
      end
    end
  end

  describe '#expression' do
    subject { object.expression }

    it { should eql(parse_expression('Test.foo')) }

    it_should_behave_like 'an idempotent method'
  end

  describe '#match_expression' do
    subject { object.match_expressions }

    it { should eql(%w[Test.foo Test*].map(&method(:parse_expression))) }

    it_should_behave_like 'an idempotent method'
  end

  describe '#prepare' do

    subject { object.prepare }

    it 'undefines method on scope' do
      expect { subject }.to change { scope.methods.include?(:foo) }.from(true).to(false)
    end

    it_should_behave_like 'a command method'
  end

  describe '#source' do
    subject { object.source }

    it { should eql("def self.foo\nend") }
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
mutant-0.8.24 spec/unit/mutant/subject/method/singleton_spec.rb
mutant-0.8.23 spec/unit/mutant/subject/method/singleton_spec.rb
mutant-0.8.22 spec/unit/mutant/subject/method/singleton_spec.rb
mutant-0.8.21 spec/unit/mutant/subject/method/singleton_spec.rb
mutant-0.8.20 spec/unit/mutant/subject/method/singleton_spec.rb
mutant-0.8.19 spec/unit/mutant/subject/method/singleton_spec.rb
mutant-0.8.18 spec/unit/mutant/subject/method/singleton_spec.rb
mutant-0.8.17 spec/unit/mutant/subject/method/singleton_spec.rb