Merge pull request #108 from abutler3/master

add tests for recent changes to User model
This commit is contained in:
joshua stein 2014-01-20 09:14:27 -08:00
commit 7d10b5eb06
2 changed files with 39 additions and 0 deletions

View file

@ -28,4 +28,35 @@ describe User do
u.authenticate("hunter2").should == u
u.authenticate("hunteR2").should == false
end
it "gets an error message after registering banned name" do
expect { User.make!(:username => "admin") }.to raise_error("Validation failed: Username is not permitted")
end
it "shows a user is banned or not" do
u = User.make!(:banned)
user = User.make!
u.is_banned?.should == true
user.is_banned?.should == false
end
it "shows a user is active or not" do
u = User.make!(:banned)
user = User.make!
u.is_active?.should == false
user.is_active?.should == true
end
it "shows a user is recent or not" do
user = User.make!(:created_at => Time.now)
u = User.make!(:created_at => Time.now - 8.days)
user.is_new?.should == true
u.is_new?.should == false
end
it "unbans a user" do
u = User.make!(:banned)
u.unban!.should be_true
end
end

View file

@ -7,6 +7,14 @@ User.blueprint do
username { "username#{sn}" }
end
User.blueprint(:banned) do
email { "banned-#{sn}@example.com" }
password { "blah blah" }
password_confirmation { object.password }
username { "username#{sn}" }
banned_at { Time.now }
end
Tag.blueprint do
tag { "tag-#{sn}" }
description { "tag #{sn}" }