Sha256: bac5e6f962c4e9ca4246a8c0342282cf31957705ef126f1af06e5fad9f7e46e0
Contents?: true
Size: 1.53 KB
Versions: 2
Compression:
Stored size: 1.53 KB
Contents
# encoding: utf-8 require 'spec_helper' module Punchblock module Translator class Asterisk module Component describe StopByRedirect do class MockComponent < Component include StopByRedirect end let(:mock_call) { mock 'Call', :id => 'foo' } subject { MockComponent.new Hash.new, mock_call } describe "#execute_command" do context "with a command it does not understand" do let(:command) { Punchblock::Component::Output::Pause.new } before { command.request! } it "returns a ProtocolError response" do subject.execute_command command command.response(0.1).should be_a ProtocolError end end context "with a Stop command" do let(:command) { Punchblock::Component::Stop.new } before do command.request! end it "sets the command response to true" do mock_call.expects(:redirect_back!) mock_call.expects(:register_handler).with do |type, *guards| type.should be == :ami guards.should have(2).guards guards[0].should be_a Proc guards[1].should be == {:name => 'AsyncAGI'} end subject.execute_command command command.response(0.1).should be == true end end end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
punchblock-1.4.0 | spec/punchblock/translator/asterisk/component/stop_by_redirect_spec.rb |
punchblock-1.3.0 | spec/punchblock/translator/asterisk/component/stop_by_redirect_spec.rb |