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,11 +1,11 @@
require 'rails_helper'
require "rails_helper"
describe 'rake db:dev_seed' do
describe "rake db:dev_seed" do
let :run_rake_task do
Rake.application.invoke_task('db:dev_seed[avoid_log]')
Rake.application.invoke_task("db:dev_seed[avoid_log]")
end
it 'seeds the database without errors' do
it "seeds the database without errors" do
expect { run_rake_task }.not_to raise_error
end
end