rubocop -a

This commit is contained in:
2017-02-26 18:22:28 +01:00
parent b56fc79f81
commit 9df54eeade
5 changed files with 9 additions and 8 deletions
+2 -2
View File
@@ -14,11 +14,11 @@ describe Supporter do
describe '.counter' do
it 'counts only from a certain number on' do
allow(Supporter).to receive(:count) { 12 }
allow(Supporter).to receive(:count) { 12 }
expect(Supporter.counter).to eq Supporter::COUNTER_START
allow(Supporter).to receive(:count) { Supporter::COUNTER_START + 12 }
allow(Supporter).to receive(:count) { Supporter::COUNTER_START + 12 }
expect(Supporter.counter).to eq Supporter::COUNTER_START + 12
end