Fixed cucumber features. Backfilled tests for AspectsController#create.
This commit is contained in:
parent
f8400389de
commit
b007ba1487
2 changed files with 34 additions and 7 deletions
|
|
@ -20,10 +20,11 @@ class AspectsController < ApplicationController
|
|||
@aspect = current_user.aspect(params[:aspect])
|
||||
if @aspect.valid?
|
||||
flash[:notice] = I18n.t('aspects.create.success')
|
||||
respond_with @aspect
|
||||
else
|
||||
flash[:error] = I18n.t('aspects.create.failure')
|
||||
redirect_to aspects_manage_path
|
||||
end
|
||||
respond_with @aspect
|
||||
end
|
||||
|
||||
def new
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ require 'spec_helper'
|
|||
|
||||
describe AspectsController do
|
||||
render_views
|
||||
|
||||
before do
|
||||
@user = Factory.create(:user)
|
||||
@user.aspect(:name => "lame-os")
|
||||
|
|
@ -13,11 +14,36 @@ describe AspectsController do
|
|||
sign_in :user, @user
|
||||
end
|
||||
|
||||
it "on index sets a variable containing all a user's friends when a user is signed in" do
|
||||
sign_in :user, @user
|
||||
describe "#index" do
|
||||
it "assigns @friends to all the user's friends" do
|
||||
Factory.create :person
|
||||
get :index
|
||||
assigns[:friends].should == @user.friends
|
||||
end
|
||||
end
|
||||
|
||||
describe "#create" do
|
||||
describe "with valid params" do
|
||||
it "creates an aspect" do
|
||||
@user.aspects.count.should == 1
|
||||
post :create, "aspect" => {"name" => "new aspect"}
|
||||
@user.reload.aspects.count.should == 2
|
||||
end
|
||||
it "redirects to the aspect page" do
|
||||
post :create, "aspect" => {"name" => "new aspect"}
|
||||
response.should redirect_to(aspect_path(Aspect.find_by_name("new aspect")))
|
||||
end
|
||||
end
|
||||
describe "with invalid params" do
|
||||
it "does not create an aspect" do
|
||||
@user.aspects.count.should == 1
|
||||
post :create, "aspect" => {"name" => ""}
|
||||
@user.reload.aspects.count.should == 1
|
||||
end
|
||||
it "goes back to manage aspects" do
|
||||
post :create, "aspect" => {"name" => ""}
|
||||
response.should redirect_to(aspects_manage_path)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in a new issue