From a7db953b98a38b964c152c0700915b7788265b13 Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Mon, 27 Apr 2015 22:08:10 +0000 Subject: [PATCH] Fix line number expecations * Should have been part of prev commit. Shame on me. --- 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 00fc9817..7302ec65 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) { 10 } + let(:method_line) { 8 } 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) { 15 } + let(:method_line) { 13 } 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) { 24 } + let(:method_line) { 22 } 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) { 29 } + let(:method_line) { 27 } 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) { 33 } + let(:method_line) { 31 } 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 3f3b9b2d..57246a34 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) { 66 } + let(:method_line) { 64 } 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) { 61 } + let(:method_line) { 59 } 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) { 71 } + let(:method_line) { 69 } it_should_behave_like 'a method matcher' end context 'outside namespace' do - let(:method_line) { 78 } + let(:method_line) { 76 } 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) { 97 } + let(:method_line) { 95 } let(:method_arity) { 1 } it_should_behave_like 'a method matcher'