From a8e8ba7359b14cc1b499b94916fcfb11b34577d9 Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Thu, 23 Oct 2014 12:01:32 +0000 Subject: [PATCH] Adjust specs for changed line numbers --- spec/unit/mutant/matcher/method/instance_spec.rb | 10 +++++----- spec/unit/mutant/matcher/method/singleton_spec.rb | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/spec/unit/mutant/matcher/method/instance_spec.rb b/spec/unit/mutant/matcher/method/instance_spec.rb index 9269538e..0c398cb2 100644 --- a/spec/unit/mutant/matcher/method/instance_spec.rb +++ b/spec/unit/mutant/matcher/method/instance_spec.rb @@ -43,14 +43,14 @@ RSpec.describe Mutant::Matcher::Method::Instance do context 'when method is defined once' do let(:scope) { base::DefinedOnce } - let(:method_line) { 7 } + let(:method_line) { 10 } it_should_behave_like 'a method matcher' end context 'when method is defined once with a memoizer' do let(:scope) { base::WithMemoizer } - let(:method_line) { 12 } + let(:method_line) { 15 } it_should_behave_like 'a method matcher' end @@ -58,7 +58,7 @@ RSpec.describe Mutant::Matcher::Method::Instance do context 'when method is defined multiple times' do context 'on different lines' do let(:scope) { base::DefinedMultipleTimes::DifferentLines } - let(:method_line) { 21 } + let(:method_line) { 24 } let(:method_arity) { 1 } it_should_behave_like 'a method matcher' @@ -66,7 +66,7 @@ RSpec.describe Mutant::Matcher::Method::Instance do context 'on the same line' do let(:scope) { base::DefinedMultipleTimes::SameLineSameScope } - let(:method_line) { 26 } + let(:method_line) { 29 } let(:method_arity) { 1 } it_should_behave_like 'a method matcher' @@ -74,7 +74,7 @@ RSpec.describe Mutant::Matcher::Method::Instance do context 'on the same line with different scope' do let(:scope) { base::DefinedMultipleTimes::SameLineDifferentScope } - let(:method_line) { 30 } + let(:method_line) { 33 } let(:method_arity) { 1 } it_should_behave_like 'a method matcher' diff --git a/spec/unit/mutant/matcher/method/singleton_spec.rb b/spec/unit/mutant/matcher/method/singleton_spec.rb index 629a0453..a48b4195 100644 --- a/spec/unit/mutant/matcher/method/singleton_spec.rb +++ b/spec/unit/mutant/matcher/method/singleton_spec.rb @@ -23,7 +23,7 @@ RSpec.describe Mutant::Matcher::Method::Singleton, '#each' do context 'when also defined on lvar' do let(:scope) { base::AlsoDefinedOnLvar } - let(:method_line) { 63 } + let(:method_line) { 66 } it_should_behave_like 'a method matcher' @@ -37,7 +37,7 @@ RSpec.describe Mutant::Matcher::Method::Singleton, '#each' do context 'when defined on self' do let(:scope) { base::DefinedOnSelf } - let(:method_line) { 58 } + let(:method_line) { 61 } it_should_behave_like 'a method matcher' end @@ -46,13 +46,13 @@ RSpec.describe Mutant::Matcher::Method::Singleton, '#each' do context 'inside namespace' do let(:scope) { base::DefinedOnConstant::InsideNamespace } - let(:method_line) { 68 } + let(:method_line) { 71 } it_should_behave_like 'a method matcher' end context 'outside namespace' do - let(:method_line) { 75 } + let(:method_line) { 78 } let(:scope) { base::DefinedOnConstant::OutsideNamespace } it_should_behave_like 'a method matcher' @@ -62,7 +62,7 @@ RSpec.describe Mutant::Matcher::Method::Singleton, '#each' do context 'when defined multiple times in the same line' do context 'with method on different scope' do let(:scope) { base::DefinedMultipleTimes::SameLine::DifferentScope } - let(:method_line) { 94 } + let(:method_line) { 97 } let(:method_arity) { 1 } it_should_behave_like 'a method matcher'