Report abuse

it "should not create a category with given identical parameters" do
  @category.stub!(:save).and_return(false)
  post 'create', :category => { :name => "Test1", 
                                :description => "Test1" }
  response.should render_template('categories/new')
end