mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:47:22 +08:00
44 lines
986 B
Ruby
44 lines
986 B
Ruby
require 'spec_helper'
|
|
require 'system_message'
|
|
|
|
describe SystemMessage do
|
|
|
|
let!(:admin) { Fabricate(:admin) }
|
|
|
|
context 'send' do
|
|
|
|
let(:user) { Fabricate(:user) }
|
|
let(:system_message) { SystemMessage.new(user) }
|
|
let(:post) { system_message.create(:welcome_invite) }
|
|
let(:topic) { post.topic }
|
|
|
|
it 'should create a post' do
|
|
post.should be_present
|
|
end
|
|
|
|
it 'should be a private message' do
|
|
topic.should be_private_message
|
|
end
|
|
|
|
it 'should be visible by the user' do
|
|
topic.allowed_users.include?(user).should be_true
|
|
end
|
|
|
|
end
|
|
|
|
context '#system_user' do
|
|
|
|
it 'returns the user specified by the site setting system_username' do
|
|
SiteSetting.stubs(:system_username).returns(admin.username)
|
|
SystemMessage.system_user.should == admin
|
|
end
|
|
|
|
it 'returns the first admin user otherwise' do
|
|
SiteSetting.stubs(:system_username).returns(nil)
|
|
SystemMessage.system_user.should == admin
|
|
end
|
|
|
|
end
|
|
|
|
end
|