Sha256: efb09fc4ce2a6ec878605febf23a3489b237c684e5feebfe5e7e33aa7fb4d4fa

Contents?: true

Size: 1.64 KB

Versions: 7

Compression:

Stored size: 1.64 KB

Contents

RSpec.describe Mutant::Expression::Namespace::Recursive do

  let(:object) { parse_expression(input) }
  let(:input)  { 'TestApp::Literal*'     }
  let(:env)    { Fixtures::TEST_ENV      }

  describe '#matcher' do
    subject { object.matcher(env) }

    it { should eql(Mutant::Matcher::Namespace.new(env, object)) }
  end

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

    it { should eql(input) }
  end

  describe '#match_length' do
    subject { object.match_length(other) }

    context 'when other is an equivalent expression' do
      let(:other) { parse_expression(object.syntax) }

      it { should be(0) }
    end

    context 'when other expression describes a shorter prefix' do
      let(:other) { parse_expression('TestApp') }

      it { should be(0) }
    end

    context 'when other expression describes adjacent namespace' do
      let(:other) { parse_expression('TestApp::LiteralFoo') }

      it { should be(0) }
    end

    context 'when other expression describes root namespace' do
      let(:other) { parse_expression('TestApp::Literal') }

      it { should be(16) }
    end

    context 'when other expression describes a longer prefix' do
      context 'on constants' do
        let(:other) { parse_expression('TestApp::Literal::Deep') }

        it { should be(input[0..-2].length) }
      end

      context 'on singleton method' do
        let(:other) { parse_expression('TestApp::Literal.foo') }

        it { should be(input[0..-2].length) }
      end

      context 'on instance method' do
        let(:other) { parse_expression('TestApp::Literal#foo') }

        it { should be(input[0..-2].length) }
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
mutant-0.8.7 spec/unit/mutant/expression/namespace/recursive_spec.rb
mutant-0.8.6 spec/unit/mutant/expression/namespace/recursive_spec.rb
mutant-0.8.5 spec/unit/mutant/expression/namespace/recursive_spec.rb
mutant-0.8.4 spec/unit/mutant/expression/namespace/recursive_spec.rb
mutant-0.8.3 spec/unit/mutant/expression/namespace/recursive_spec.rb
mutant-0.8.2 spec/unit/mutant/expression/namespace/recursive_spec.rb
mutant-0.8.1 spec/unit/mutant/expression/namespace/recursive_spec.rb