More randomly failing specs fixes.

This commit is contained in:
Guo Xiang Tan 2016-09-05 19:33:03 +08:00
parent 1b2b142f30
commit 35bc0c943f

View file

@ -38,11 +38,11 @@ describe DiscoursePlugin do
context 'registering for callbacks' do
before do
plugin.stubs(:hello)
plugin.listen_for(:hello)
@proc = plugin.listen_for(:hello).first
end
after do
DiscourseEvent.off(:hello)
DiscourseEvent.off(:hello, &@proc)
end
it "calls the method when it is triggered" do