Sha256: 8eb41cce7e7cf300a20896ed4faf55a1ab6a636cfae50c7adc543d321e1ea871
Contents?: true
Size: 1.56 KB
Versions: 5
Compression:
Stored size: 1.56 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') } 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 mock_call.expects(:id) 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
5 entries across 5 versions & 1 rubygems