mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-02-01 13:10:58 -05: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
411 B
Ruby
21 lines
411 B
Ruby
require 'rails_helper'
|
|
|
|
describe ScientificNamesController do
|
|
login_member(:crop_wrangling_member)
|
|
|
|
before(:each) do
|
|
@crop = FactoryBot.create(:tomato)
|
|
end
|
|
|
|
def valid_attributes
|
|
{ name: 'Solanum lycopersicum', crop_id: @crop.id }
|
|
end
|
|
|
|
describe "GET new" do
|
|
it "assigns crop if specified" do
|
|
get :new, crop_id: 1
|
|
assigns(:crop).should be_an_instance_of Crop
|
|
end
|
|
end
|
|
end
|