Files
growstuff/spec/views/admin/index_spec.rb
milesgould bb6e9e32e6 De-deprecate controller and view specs
We deprecated controller and view specs on the grounds that they were
brittle, and were a poorer measure of user experience than feature
specs. However, feature specs have their own problems: they're much
slower to run, and flakier (see #901). We also ran into a few cases
where feature specs erroneously passed because they were checking for
the presence of a string that occurred in the error page!

Hence, we're cautiously un-deprecating controller and view specs.

Fixes #1132
2017-11-24 19:02:54 +13:00

22 lines
569 B
Ruby

require 'rails_helper'
describe 'admin/index.html.haml', type: "view" do
before(:each) do
@member = FactoryBot.create(:admin_member)
sign_in @member
controller.stub(:current_user) { @member }
render
end
it "includes links to manage various things" do
assert_select "a", href: account_types_path
assert_select "a", href: products_path
assert_select "a", href: roles_path
assert_select "a", href: forums_path
end
it "has a link to newsletter subscribers" do
rendered.should have_content "Newsletter subscribers"
end
end