Added tests for automatic password generation.
This commit is contained in:
parent
56dbfd2af3
commit
bea0583951
1 changed files with 6 additions and 0 deletions
|
@ -22,6 +22,12 @@ describe User do
|
||||||
user.identifier.should == "test_mail_com"
|
user.identifier.should == "test_mail_com"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it "should generate password when password is empty" do
|
||||||
|
user = User.create(:email => "test1@mail.com")
|
||||||
|
user.password.should eql(user.password_confirmation)
|
||||||
|
user.password.should_not be_empty
|
||||||
|
end
|
||||||
|
|
||||||
it "should have authentication token" do
|
it "should have authentication token" do
|
||||||
user = Factory(:user)
|
user = Factory(:user)
|
||||||
user.authentication_token.should_not == ""
|
user.authentication_token.should_not == ""
|
||||||
|
|
Loading…
Reference in a new issue