mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-02-01 05:01:04 -05:00
23 lines
437 B
Ruby
23 lines
437 B
Ruby
require 'spec_helper'
|
|
|
|
describe ScientificNamesController do
|
|
|
|
login_member(:crop_wrangling_member)
|
|
|
|
before(:each) do
|
|
@crop = FactoryGirl.create(:tomato)
|
|
end
|
|
|
|
def valid_attributes
|
|
{ :scientific_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
|