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,8 +1,8 @@
require 'rails_helper'
require "rails_helper"
feature 'Budget Poll Officing' do
feature "Budget Poll Officing" do
scenario 'Show sidebar menu if officer has shifts assigned' do
scenario "Show sidebar menu if officer has shifts assigned" do
poll = create(:poll)
booth = create(:poll_booth)
booth_assignment = create(:poll_booth_assignment, poll: poll, booth: booth)
@@ -24,7 +24,7 @@ feature 'Budget Poll Officing' do
expect(page).to have_content("Total recounts and results")
end
scenario 'Do not show sidebar menu if officer has no shifts assigned' do
scenario "Do not show sidebar menu if officer has no shifts assigned" do
user = create(:user)
officer = create(:poll_officer, user: user)
@@ -36,4 +36,4 @@ feature 'Budget Poll Officing' do
expect(page).not_to have_content("Total recounts and results")
end
end
end