Skip to content

Commit 925949e

Browse files
author
Savater Sebastien
committed
Sorry, it was too simple ;)
1 parent 1c73f49 commit 925949e

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

spec/level_2_spec.rb

+3-10
Original file line numberDiff line numberDiff line change
@@ -49,23 +49,20 @@
4949
let!(:montpellier) { Commune.create(name: 'Montpellier', code_insee: '34172') }
5050
let!(:baillargues) { Commune.create(name: 'Baillargues', code_insee: '34022') }
5151
let!(:vendargues) { Commune.create(name: 'Vendargues' , code_insee: '34327') }
52+
let!(:perols) { Commune.create(name: 'Pérols' , code_insee: '34327') }
5253

5354
it "searches through communes by their name" do
5455
results = Commune.search('Montpellier')
5556

5657
expect(results.size).to eq(1)
5758
expect(results).to include(montpellier)
58-
expect(results).to_not include(baillargues)
59-
expect(results).to_not include(vendargues)
6059
end
6160

6261
it "searches with insensitive case" do
63-
results = Commune.search('MoNTPelLIER')
62+
results = Commune.search('PÉROLS')
6463

6564
expect(results.size).to eq(1)
66-
expect(results).to include(montpellier)
67-
expect(results).to_not include(baillargues)
68-
expect(results).to_not include(vendargues)
65+
expect(results).to include(perols)
6966
end
7067

7168
it "searches with partial name" do
@@ -74,16 +71,12 @@
7471
expect(results.size).to eq(2)
7572
expect(results).to include(baillargues)
7673
expect(results).to include(vendargues)
77-
expect(results).to_not include(montpellier)
7874
end
7975

8076
it "searches and escapes special characters" do
8177
results = Commune.search('%argue')
8278

8379
expect(results.size).to eq(0)
84-
expect(results).to_not include(baillargues)
85-
expect(results).to_not include(vendargues)
86-
expect(results).to_not include(montpellier)
8780
end
8881

8982
it "is chainable" do

0 commit comments

Comments
 (0)