mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05: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
|