Extracted from the official United Nations Sustainable Development Goals website [1]. [1] https://www.un.org/sustainabledevelopment/sustainable-development-goals/
19 lines
416 B
Ruby
19 lines
416 B
Ruby
require "rails_helper"
|
|
|
|
describe "Goals", :js do
|
|
before { login_as(create(:administrator).user) }
|
|
|
|
describe "Index" do
|
|
scenario "Visit the index" do
|
|
visit sdg_management_root_path
|
|
|
|
within("#side_menu") do
|
|
click_link "Goals and Targets"
|
|
end
|
|
|
|
expect(page).to have_title "SDG content - Goals"
|
|
within("table") { expect(page).to have_content "No Poverty" }
|
|
end
|
|
end
|
|
end
|