Add SDG targets to seeds

Co-authored-by: Javi Martín <javim@elretirao.net>
This commit is contained in:
Senén Rodero Rodríguez
2020-11-13 17:00:09 +01:00
parent c39c7213c7
commit 00e91c40b9
2 changed files with 29 additions and 1 deletions

View File

@@ -7,22 +7,28 @@ describe "rake db:load_sdg" do
Rake.application.invoke_task("db:load_sdg")
end
it "populates empty databases correctly" do
it "populates empty databases and assigns targets correctly" do
SDG::Goal.destroy_all
run_rake_task
expect(SDG::Goal.count).to eq 17
expect(SDG::Target.count).to eq 169
expect(SDG::Target["17.1"].goal.code).to eq 17
end
it "does not create additional records on populated databases" do
expect(SDG::Goal.count).to eq 17
expect(SDG::Target.count).to eq 169
goal_id = SDG::Goal.last.id
target_id = SDG::Target.last.id
run_rake_task
expect(SDG::Goal.count).to eq 17
expect(SDG::Target.count).to eq 169
expect(SDG::Goal.last.id).to eq goal_id
expect(SDG::Target.last.id).to eq target_id
end
end