Remove duplicate test

This test is exactly the same as the "visible for admins" scenario.
This commit is contained in:
Javi Martín
2019-11-06 15:21:10 +01:00
parent 6bbfb55586
commit 33c2b28063

View File

@@ -283,23 +283,6 @@ describe "Valuation budget investments" do
visit valuation_budget_budget_investment_path(budget, investment)
end.to raise_error "Not Found"
end
scenario "preview is visible" do
logout
login_as create(:administrator).user
visit valuation_budget_budget_investment_path(budget, investment)
expect(page).to have_content("Investment preview")
expect(page).to have_content(investment.title)
expect(page).to have_content(investment.description)
expect(page).to have_content(investment.author.name)
expect(page).to have_content(investment.heading.name)
expect(page).to have_content("1234")
expect(page).to have_content("Unfeasible")
expect(page).to have_content("It is impossible")
expect(page).to have_content("Ana (ana@admins.org)")
end
end
describe "Valuate" do