mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-30 04:35:28 -04:00
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
21 lines
507 B
Ruby
21 lines
507 B
Ruby
require 'rails_helper'
|
|
|
|
describe 'admin/orders/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 a search form for orders" do
|
|
assert_select "form"
|
|
assert_select "input#search_text"
|
|
assert_select "select#search_by"
|
|
end
|
|
|
|
it "lets you search by referral code" do
|
|
assert_select "option[value=referral_code]", text: "Referral code"
|
|
end
|
|
end
|