This file contains hidden or 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
describe User do | |
before(:each) do | |
@attr = { :name => "Example User", :email => "[email protected]" } | |
end | |
. | |
. | |
. | |
it "should reject duplicate email addresses" do | |
# Put a user with given email address into the database. |
This file contains hidden or 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
describe User do | |
before(:each) do | |
@attr = { :name => "Example User", :email => "[email protected]" } | |
end | |
it "should create a new instance given valid attributes" do | |
User.create!(@attr) | |
end |
This file contains hidden or 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
describe User do | |
before(:each) do | |
@attr = { :name => "Example User", :email => "[email protected]" } | |
end | |
. | |
. | |
. | |
it "should reject email addresses identical up to case" do | |
upcased_email = @attr[:email].upcase |
This file contains hidden or 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
describe User do | |
before(:each) do | |
@attr = { :name => "Example User", :email => "[email protected]" } | |
end | |
it "should create a new instance given valid attributes" do | |
User.create!(@attr) | |
end |
This file contains hidden or 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
require 'spec_helper' | |
describe User do | |
before(:each) do | |
@attr = { | |
:name => "Example User", | |
:email => "[email protected]", | |
:password => "foobar", | |
:password_confirmation => "foobar" |
This file contains hidden or 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
require 'spec_helper' | |
describe User do | |
before(:each) do | |
@attr = { | |
:name => "Example User", | |
:email => "[email protected]", | |
:password => "foobar", | |
:password_confirmation => "foobar" |
This file contains hidden or 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
describe User do | |
. | |
. | |
. | |
describe "password encryption" do | |
before(:each) do | |
@user = User.create!(@attr) | |
end |
This file contains hidden or 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
require 'spec_helper' | |
describe User do | |
before(:each) do | |
@attr = { | |
:name => "Example User", | |
:email => "[email protected]", | |
:password => "foobar", | |
:password_confirmation => "foobar" |
This file contains hidden or 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
require 'spec_helper' | |
describe User do | |
before(:each) do | |
@attr = { | |
:name => "Example User", | |
:email => "[email protected]", | |
:password => "foobar", | |
:password_confirmation => "foobar" |
This file contains hidden or 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
echo "pointer = 1 2 3 5 4 6 7 8 9 10 11 12" >> ~/.Xmodmap; xmodmap ~/.Xmodmap |