-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
164 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<% if @user.errors.any? %> | ||
<div id="error_explanation"> | ||
<h2> | ||
<%= pluralize(@user.errors.count, "error") %> | ||
prohibited this user from being saved: | ||
</h2> | ||
<p>There were problems with the following fields:</p> | ||
<ul> | ||
<% @user.errors.full_messages.each do |message| %> | ||
<li><%= message %></li> | ||
<% end %> | ||
</ul> | ||
</div> | ||
|
||
<% end %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,4 +53,55 @@ | |
response.should have_selector('title', :content => "Sign up") | ||
end | ||
end | ||
|
||
describe "POST 'create'" do | ||
|
||
describe "failure" do | ||
|
||
before(:each) do | ||
@attr = { :name => "", :email => "", :password => "", | ||
:password_confirmation => "" } | ||
end | ||
|
||
it "should have the right title" do | ||
post :create, :user => @attr | ||
response.should have_selector('title', :content => "Sign up") | ||
end | ||
|
||
it "should render the 'new' page" do | ||
post :create, :user => @attr | ||
response.should render_template('new') | ||
end | ||
|
||
it "should not create a user" do | ||
lambda do | ||
post :create, :user => @attr | ||
end.should_not change(User, :count) | ||
end | ||
end | ||
|
||
describe "success" do | ||
|
||
before(:each) do | ||
@attr = { :name => "New User", :email => "[email protected]", | ||
:password => "foobar", :password_confirmation => "foobar" } | ||
end | ||
|
||
it "should create a user" do | ||
lambda do | ||
post :create, :user => @attr | ||
end.should change(User, :count).by(1) | ||
end | ||
|
||
it "should redirect to the user show page" do | ||
post :create, :user => @attr | ||
response.should redirect_to(user_path(assigns(:user))) | ||
end | ||
|
||
it "should have a welcome message" do | ||
post :create, :user => @attr | ||
flash[:success].should =~ /welcome to the sample app/i | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
require 'spec_helper' | ||
|
||
describe "Users" do | ||
|
||
describe "signup" do | ||
|
||
describe "failure" do | ||
it "should not make a new user" do | ||
lambda do | ||
visit signup_path | ||
fill_in "Name", :with => "" | ||
fill_in "Email", :with => "" | ||
fill_in "Password", :with => "" | ||
fill_in "Confirmation", :with => "" | ||
click_button | ||
response.should render_template('users/new') | ||
response.should have_selector('div#error_explanation') | ||
end.should_not change(User, :count) | ||
end | ||
end | ||
|
||
describe "success" do | ||
it "should make a new user" do | ||
lambda do | ||
visit signup_path | ||
fill_in "Name", :with => "Example User" | ||
fill_in "Email", :with => "[email protected]" | ||
fill_in "Password", :with => "foobar" | ||
fill_in "Confirmation", :with => "foobar" | ||
click_button | ||
response.should have_selector('div.flash.success', | ||
:content => "Welcome") | ||
response.should render_template('users/show') | ||
end.should change(User, :count).by(1) | ||
end | ||
end | ||
|
||
end | ||
|
||
end |