mirror of
https://github.com/discourse/discourse.git
synced 2025-02-12 14:33:59 +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
|