-
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
4 changed files
with
73 additions
and
2 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
class AddEmailUniquenessIndex < ActiveRecord::Migration | ||
def self.up | ||
add_index :users, :email, :unique => true | ||
end | ||
|
||
def self.down | ||
remove_index :users, :email | ||
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
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 |
---|---|---|
@@ -1,5 +1,57 @@ | ||
require 'spec_helper' | ||
|
||
describe User do | ||
pending "add some examples to (or delete) #{__FILE__}" | ||
|
||
before(:each) do | ||
@attr = { :name => "Example User", :email => "[email protected]" } | ||
end | ||
|
||
it "should create a new instance given a valid attribute" do | ||
User.create!(@attr) | ||
end | ||
|
||
it "should require a name" do | ||
no_name_user = User.new(@attr.merge(:name => "")) | ||
no_name_user.should_not be_valid | ||
end | ||
|
||
it "should require an email address" do | ||
no_email_user = User.new(@attr.merge(:email => "")) | ||
no_email_user.should_not be_valid | ||
end | ||
|
||
it "should reject names that are too long" do | ||
long_name = "a" * 51 | ||
long_name_user = User.new(@attr.merge(:name => long_name)) | ||
long_name_user.should_not be_valid | ||
end | ||
|
||
it "should accept valid email addresses" do | ||
addresses = %w[[email protected] [email protected] [email protected]] | ||
addresses.each do |address| | ||
valid_email_user = User.new(@attr.merge(:email => address)) | ||
valid_email_user.should be_valid | ||
end | ||
end | ||
|
||
it "should reject invalid email addresses" do | ||
addresses = %w[user@foo,com user_at_foo.org example.user@foo.] | ||
addresses.each do |address| | ||
invalid_email_user = User.new(@attr.merge(:email => address)) | ||
invalid_email_user.should_not be_valid | ||
end | ||
end | ||
|
||
it "should reject duplicate email addresses" do | ||
User.create!(@attr) | ||
user_with_duplicate_email = User.new(@attr) | ||
user_with_duplicate_email.should_not be_valid | ||
end | ||
|
||
it "should reject email addresses identical up to case" do | ||
upcased_email = @attr[:email].upcase | ||
User.create!(@attr.merge(:email => upcased_email)) | ||
user_with_duplicate_email = User.new(@attr) | ||
user_with_duplicate_email.should_not be_valid | ||
end | ||
end |