mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
18 lines
211 B
Ruby
18 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
|