Change single quotes to double quotes

This commit is contained in:
Julian Herrero
2019-02-01 16:48:49 +01:00
parent 4a12425987
commit 31ac8b7f55
302 changed files with 6403 additions and 6403 deletions

View File

@@ -1,6 +1,6 @@
require 'rails_helper'
require "rails_helper"
describe 'rake map_locations:destroy' do
describe "rake map_locations:destroy" do
before do
create(:map_location, :proposal_map_location)
empty_location = create(:map_location, :proposal_map_location)
@@ -9,10 +9,10 @@ describe 'rake map_locations:destroy' do
end
let :run_rake_task do
Rake.application.invoke_task('map_locations:destroy')
Rake.application.invoke_task("map_locations:destroy")
end
it 'destroys empty locations' do
it "destroys empty locations" do
expect(MapLocation.all.size).to eq(2)
run_rake_task
expect(MapLocation.all.size).to eq(1)