spec/botfly/muc_client_spec.rb in botfly-0.3.4 vs spec/botfly/muc_client_spec.rb in botfly-0.3.5

- old
+ new

@@ -75,9 +75,10 @@ it "should respond to with appropriate responder" do muc_client.responders[:foo] = [stub("responder", :callback_with => nil)] muc_client.send(:respond_to, :foo) end it "should tell xmpp4r not to send history" do + pending "inclusion of history option into xmpp4r" muc.should_receive(:join).with(anything, nil, hash_including(:history => false)) Jabber::MUC::SimpleMUCClient.stub(:new).and_return(muc) muc_client.send(:connect) end end