Sha256: 996243deb01c5ea4614b30deca9b35bd6acd5831ae15db729518ae2daf6b064b
Contents?: true
Size: 978 Bytes
Versions: 2
Compression:
Stored size: 978 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Mutant::Expression::Namespace::Recursive do let(:object) { described_class.parse(input) } let(:cache) { Mutant::Cache.new } let(:input) { '::TestApp::Literal*' } describe '#matcher' do subject { object.matcher(cache) } it { should eql(Mutant::Matcher::Namespace.new(cache, '::TestApp::Literal')) } end describe '#match_length' do subject { object.match_length(other) } context 'when other is an equivalent expression' do let(:other) { described_class.parse(object.syntax) } it { should be(0) } end context 'when other expression describes a shorter prefix' do let(:other) { described_class.parse('::TestApp') } it { should be(0) } end context 'when other expression describes a longer prefix' do let(:other) { described_class.parse('::TestApp::Literal::Deep') } it { should be(input[0..-2].length) } end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mutant-0.5.19 | spec/unit/mutant/expression/namespace/recursive_spec.rb |
mutant-0.5.18 | spec/unit/mutant/expression/namespace/recursive_spec.rb |