Added tests for automatic password generation.

This commit is contained in:
Jakub Troszok 2012-06-24 22:51:58 +02:00
parent 56dbfd2af3
commit bea0583951

View file

@ -22,6 +22,12 @@ describe User do
user.identifier.should == "test_mail_com"
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
user = Factory(:user)
user.authentication_token.should_not == ""