mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:10:17 +08:00
49 lines
1.1 KiB
Ruby
49 lines
1.1 KiB
Ruby
require 'spec_helper'
|
|
require 'promotion'
|
|
|
|
describe Promotion do
|
|
|
|
context "new user" do
|
|
|
|
let(:user) { Fabricate(:user, trust_level: TrustLevel.Levels[:new])}
|
|
let(:promotion) { Promotion.new(user) }
|
|
|
|
it "doesn't raise an error with a nil user" do
|
|
-> { Promotion.new(nil).review }.should_not raise_error
|
|
end
|
|
|
|
context 'that has done nothing' do
|
|
let!(:result) { promotion.review }
|
|
|
|
it "returns false" do
|
|
result.should be_false
|
|
end
|
|
|
|
it "has not changed the user's trust level" do
|
|
user.trust_level.should == TrustLevel.Levels[:new]
|
|
end
|
|
end
|
|
|
|
context "that has done the requisite things" do
|
|
|
|
before do
|
|
user.topics_entered = SiteSetting.basic_requires_topics_entered
|
|
user.posts_read_count = SiteSetting.basic_requires_read_posts
|
|
user.time_read = SiteSetting.basic_requires_time_spent_mins * 60
|
|
@result = promotion.review
|
|
end
|
|
|
|
it "returns true" do
|
|
@result.should be_true
|
|
end
|
|
|
|
it "has upgraded the user to basic" do
|
|
user.trust_level.should == TrustLevel.Levels[:basic]
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
|
|
end
|