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,44 +1,44 @@
require 'rails_helper'
require "rails_helper"
describe PagesController do
describe 'Static pages' do
it 'includes a privacy page' do
describe "Static pages" do
it "includes a privacy page" do
get :show, id: :privacy
expect(response).to be_ok
end
it 'includes a conditions page' do
it "includes a conditions page" do
get :show, id: :conditions
expect(response).to be_ok
end
it 'includes a accessibility page' do
it "includes a accessibility page" do
get :show, id: :accessibility
expect(response).to be_ok
end
end
describe 'More info pages' do
describe "More info pages" do
it 'includes a more info page' do
get :show, id: 'help/index'
it "includes a more info page" do
get :show, id: "help/index"
expect(response).to be_ok
end
it 'includes a how_to_use page' do
get :show, id: 'help/how_to_use/index'
it "includes a how_to_use page" do
get :show, id: "help/how_to_use/index"
expect(response).to be_ok
end
it 'includes a faq page' do
get :show, id: 'help/faq/index'
it "includes a faq page" do
get :show, id: "help/faq/index"
expect(response).to be_ok
end
end
describe 'Not found pages' do
it 'returns a 404 message' do
describe "Not found pages" do
it "returns a 404 message" do
get :show, id: "nonExistentPage"
expect(response).to be_missing
end