Sha256: 4ed16ed518a0509b98cb47396a2da69ade9c35fad4643b7145e57e837f520de4
Contents?: true
Size: 1.28 KB
Versions: 14
Compression:
Stored size: 1.28 KB
Contents
RSpec.describe Mutant::Expression::Methods do let(:object) { described_class.parse(input) } let(:env) { Fixtures::TEST_ENV } let(:instance_methods) { 'TestApp::Literal#' } let(:singleton_methods) { 'TestApp::Literal.' } describe '#match_length' do let(:input) { instance_methods } subject { object.match_length(other) } context 'when other is an equivalent expression' do let(:other) { described_class.parse(object.syntax) } it { should be(object.syntax.length) } end context 'when other is matched' do let(:other) { described_class.parse('TestApp::Literal#foo') } it { should be(object.syntax.length) } end context 'when other is an not matched expression' do let(:other) { described_class.parse('Foo*') } it { should be(0) } end end describe '#matcher' do subject { object.matcher(env) } context 'with an instance method' do let(:input) { instance_methods } it { should eql(Mutant::Matcher::Methods::Instance.new(env, TestApp::Literal)) } end context 'with a singleton method' do let(:input) { singleton_methods } it { should eql(Mutant::Matcher::Methods::Singleton.new(env, TestApp::Literal)) } end end end
Version data entries
14 entries across 14 versions & 1 rubygems