Files
growstuff/spec/controllers/crops_controller_spec.rb
2013-08-21 21:24:22 +10:00

32 lines
705 B
Ruby

require 'spec_helper'
describe CropsController do
login_member(:crop_wrangling_member)
def valid_attributes
{
:system_name => "Tomato",
:en_wikipedia_url => 'http://en.wikipedia.org/wiki/Tomato'
}
end
describe "GET crop wrangler homepage" do
it 'fetches the crop wrangler homepage' do
get :wrangle
response.should be_success
response.should render_template("crops/wrangle")
end
end
describe "GET RSS feed" do
it "returns an RSS feed" do
get :index, :format => "rss"
response.should be_success
response.should render_template("crops/index")
response.content_type.should eq("application/rss+xml")
end
end
end