Files
growstuff/spec/views/crops/edit.html.haml_spec.rb
2017-12-06 14:29:21 +13:00

20 lines
424 B
Ruby

require 'rails_helper'
describe "crops/edit" do
before(:each) do
controller.stub(:current_user) do
FactoryBot.create(:crop_wrangling_member)
end
@crop = FactoryBot.create(:maize)
3.times do
@crop.scientific_names.build
end
assign(:crop, @crop)
render
end
it "shows the creator" do
rendered.should have_content "Added by #{@crop.creator} less than a minute ago."
end
end