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,41 +1,41 @@
require 'rails_helper'
require "rails_helper"
feature 'Admin feature flags' do
feature "Admin feature flags" do
background do
Setting['feature.spending_proposals'] = true
Setting['feature.spending_proposal_features.voting_allowed'] = true
Setting["feature.spending_proposals"] = true
Setting["feature.spending_proposal_features.voting_allowed"] = true
login_as(create(:administrator).user)
end
after do
Setting['feature.spending_proposals'] = nil
Setting['feature.spending_proposal_features.voting_allowed'] = nil
Setting["feature.spending_proposals"] = nil
Setting["feature.spending_proposal_features.voting_allowed"] = nil
end
scenario 'Enabled features are listed on menu' do
scenario "Enabled features are listed on menu" do
visit admin_root_path
within('#side_menu') do
within("#side_menu") do
expect(page).to have_link "Spending proposals"
expect(page).to have_link "Hidden debates"
end
end
scenario 'Disable a feature' do
setting_id = Setting.find_by(key: 'feature.spending_proposals').id
scenario "Disable a feature" do
setting_id = Setting.find_by(key: "feature.spending_proposals").id
visit admin_settings_path
within("#edit_setting_#{setting_id}") do
expect(page).to have_button "Disable"
expect(page).not_to have_button "Enable"
click_button 'Disable'
click_button "Disable"
end
visit admin_root_path
within('#side_menu') do
within("#side_menu") do
expect(page).not_to have_link "Budgets"
expect(page).not_to have_link "Spending proposals"
end
@@ -44,13 +44,13 @@ feature 'Admin feature flags' do
expect{ visit admin_spending_proposals_path }.to raise_exception(FeatureFlags::FeatureDisabled)
end
scenario 'Enable a disabled feature' do
Setting['feature.spending_proposals'] = nil
setting_id = Setting.find_by(key: 'feature.spending_proposals').id
scenario "Enable a disabled feature" do
Setting["feature.spending_proposals"] = nil
setting_id = Setting.find_by(key: "feature.spending_proposals").id
visit admin_root_path
within('#side_menu') do
within("#side_menu") do
expect(page).not_to have_link "Budgets"
expect(page).not_to have_link "Spending proposals"
end
@@ -60,12 +60,12 @@ feature 'Admin feature flags' do
within("#edit_setting_#{setting_id}") do
expect(page).to have_button "Enable"
expect(page).not_to have_button "Disable"
click_button 'Enable'
click_button "Enable"
end
visit admin_root_path
within('#side_menu') do
within("#side_menu") do
expect(page).to have_link "Spending proposals"
end
end