mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:05:11 +08:00
19 lines
211 B
Ruby
19 lines
211 B
Ruby
require 'spec_helper'
|
|
|
|
describe MessageBusObserver do
|
|
|
|
context 'after create topic' do
|
|
|
|
after do
|
|
@topic = Fabricate(:topic)
|
|
end
|
|
|
|
it 'publishes the topic to the list' do
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
end
|