Add SDG content section
This commit is contained in:
20
spec/system/sdg_management/goals_spec.rb
Normal file
20
spec/system/sdg_management/goals_spec.rb
Normal file
@@ -0,0 +1,20 @@
|
||||
require "rails_helper"
|
||||
|
||||
describe "Goals", :js do
|
||||
before { login_as(create(:administrator).user) }
|
||||
|
||||
describe "Index" do
|
||||
scenario "Visit the index" do
|
||||
SDG::Goal.where(code: "1").first_or_create!
|
||||
|
||||
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
|
||||
Reference in New Issue
Block a user