Display public investment view on admin and valuator pages as preview

This commit is contained in:
lalo
2019-04-08 09:32:00 +02:00
parent 8d5f53e1e7
commit c538d08fee
38 changed files with 227 additions and 386 deletions

View File

@@ -230,9 +230,9 @@ describe "Valuation budget investments" do
investment.update(visible_to_valuators: true)
visit valuation_budget_budget_investments_path(budget)
click_link investment.title
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)
@@ -254,6 +254,7 @@ describe "Valuation budget investments" do
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)
@@ -278,6 +279,22 @@ describe "Valuation budget investments" do
}.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