Fix indentation & spaces on map validation files

This commit is contained in:
Bertocq
2017-12-23 12:00:00 +01:00
parent 125b6705a9
commit 93e6a7e6aa
2 changed files with 36 additions and 36 deletions

View File

@@ -1,54 +1,55 @@
shared_examples "map validations" do
let(:mappable) { build(model_name(described_class)) }
let(:mappable) { build(model_name(described_class)) }
describe "validations" do
before(:each) do
Setting["feature.map"] = true
end
before(:each) do
Setting["feature.map"] = true
end
after(:each) do
Setting["feature.map"] = nil
end
after(:each) do
Setting["feature.map"] = nil
end
it "should be valid with a map location" do
mappable.map_location = build(:map_location)
mappable.skip_map = nil
it "should be valid with a map location" do
mappable.map_location = build(:map_location)
mappable.skip_map = nil
expect(mappable).to be_valid
end
expect(mappable).to be_valid
end
it "should be valid accepting that the mappable has no map" do
mappable.skip_map = "1"
mappable.map_location = nil
it "should be valid accepting that the mappable has no map" do
mappable.skip_map = "1"
mappable.map_location = nil
expect(mappable).to be_valid
end
expect(mappable).to be_valid
end
it "should be valid when the feature map is deactivated" do
Setting["feature.map"] = nil
it "should be valid when the feature map is deactivated" do
Setting["feature.map"] = nil
mappable.map_location = nil
mappable.skip_map = nil
mappable.map_location = nil
mappable.skip_map = nil
expect(mappable).to be_valid
end
expect(mappable).to be_valid
end
it "should not be valid without a map location" do
mappable.map_location = nil
mappable.skip_map = nil
it "should not be valid without a map location" do
mappable.map_location = nil
mappable.skip_map = nil
expect(mappable).to_not be_valid
end
expect(mappable).to_not be_valid
end
it "should not be valid without accepting that the mappable has no map" do
mappable.skip_map = nil
it "should not be valid without accepting that the mappable has no map" do
mappable.skip_map = nil
expect(mappable).to_not be_valid
end
expect(mappable).to_not be_valid
end
end
end
describe "cache" do
it "should expire cache when the map is updated" do
@@ -57,9 +58,9 @@ shared_examples "map validations" do
mappable.save
expect { map_location.update(latitude: 12.34) }
.to change { mappable.reload.updated_at }
.to change { mappable.reload.updated_at }
end
end
end
end