AutoCommit Son Aug 30 18:03:01 CEST 2015

This commit is contained in:
Andreas Stephanides
2015-08-30 18:03:01 +02:00
parent 9dd9c3cc48
commit 2d9944dfc3
4 changed files with 39 additions and 20 deletions

View File

@@ -23,7 +23,7 @@ describe FetprofilesController, :type=> :controller do
# This should return the minimal set of attributes required to create a valid
# Fetprofile. As you add validations to Fetprofile, be sure to
# adjust the attributes here as well.
let(:valid_attributes) { {} }
let(:valid_attributes) { {"vorname"=>"Neuer Vorname"} }
# This should return the minimal set of values that should be in the session
# in order to pass any filters (e.g. authentication) defined in
@@ -70,18 +70,19 @@ describe FetprofilesController, :type=> :controller do
describe "with valid params" do
it "creates a new Fetprofile" do
expect {
post :create, {:fetprofile => FactoryGirl.create(:fetprofile).to_hash}, valid_session
post :create, {:fetprofile => FactoryGirl.create(:fetprofile).attributes}, valid_session
}.to change(Fetprofile, :count).by(1)
end
it "assigns a newly created fetprofile as @fetprofile" do
post :create, {:fetprofile => FactoryGirl.create(:fetprofile).to_hash}, valid_session
post :create, {:fetprofile => FactoryGirl.create(:fetprofile).attributes}, valid_session
assigns(:fetprofile).should be_a(Fetprofile)
assigns(:fetprofile).should be_persisted
end
it "redirects to the created fetprofile" do
post :create, {:fetprofile => FactoryGirl.create(:fetprofile).to_hash}, valid_session
post :create, {:fetprofile => FactoryGirl.create(:fetprofile).attributes}, valid_session
response.should redirect_to(Fetprofile.last)
end
end
@@ -104,26 +105,31 @@ describe FetprofilesController, :type=> :controller do
end
describe "PUT update" do
before(:each) do
u= FactoryGirl.create(:user)
u.add_role(:fetuser)
sign_in u
end
describe "with valid params" do
it "updates the requested fetprofile" do
fetprofile = FactoryGirl.create(:fetprofile)
# Assuming there are no other fetprofiles in the database, this
# specifies that the Fetprofile created on the previous line
# receives the :update_attributes message with whatever params are
# submitted in the request.
Fetprofile.any_instance.should_receive(:update_attributes).with({ "vorname" => "MyString" })
put :update, {:id => fetprofile.to_param, :fetprofile => { "vorname" => "MyString" }}, valid_session
# Fetprofile.any_instance.should_receive(:update_attributes).with({"vorname"=>"neuerName"})
expect {
put :update, {:id => fetprofile.to_param, :fetprofile => {"vorname"=>"neuerName"}}, valid_session
puts Fetprofile.find(fetprofile.id).vorname
}.to change{Fetprofile.find(fetprofile.id).vorname}#.to("neuerName")
end
it "assigns the requested fetprofile as @fetprofile" do
fetprofile = FactoryGirl.create(:fetprofile)
put :update, {:id => fetprofile.to_param, :fetprofile => valid_attributes}, valid_session
assigns(:fetprofile).should eq(fetprofile)
put :update, {:id => fetprofile.to_param, :fetprofile=> {}}#, valid_session
expect(assigns(:fetprofile)).to eq(fetprofile)
end
it "redirects to the fetprofile" do
fetprofile = FactoryGirl.create(:fetprofile)
put :update, {:id => fetprofile.to_param, :fetprofile => valid_attributes}, valid_session
put :update, {:id => fetprofile.to_param, :fetprofile => {"vorname"=>"neuerName"}}#, valid_session
response.should redirect_to(fetprofile)
end
end
@@ -133,15 +139,17 @@ describe FetprofilesController, :type=> :controller do
fetprofile = FactoryGirl.create(:fetprofile)
# Trigger the behavior that occurs when invalid params are submitted
Fetprofile.any_instance.stub(:save).and_return(false)
put :update, {:id => fetprofile.to_param, :fetprofile => { "vorname" => "invalid value" }}, valid_session
assigns(:fetprofile).should eq(fetprofile)
put :update, {:id => fetprofile.to_param, :fetprofile => { "vorname" => "invalid value" }}#, valid_session
expect(assigns(:fetprofile)).to eq(fetprofile)
end
it "re-renders the 'edit' template" do
fetprofile = FactoryGirl.create(:fetprofile)
attributes= Fetprofile.attributes
# Trigger the behavior that occurs when invalid params are submitted
Fetprofile.any_instance.stub(:save).and_return(false)
put :update, {:id => fetprofile.to_param, :fetprofile => { "vorname" => "invalid value" }}, valid_session
put :update, {:id => fetprofile.to_param, :fetprofile => attributes}, valid_session
response.should render_template("edit")
end
end

8
spec/factories/users.rb Normal file
View File

@@ -0,0 +1,8 @@
FactoryGirl.define do
factory :user do
email "testuser@test.at"
password "password"
password_confirmation "password"
end
end

View File

@@ -1,7 +1,4 @@
require 'spec_helper'
describe User do
email "testuser@test.at"
password "password"
password_confirmation "password"
end