Sha256: d04d421ae5ac4b1784eb25687389c2bfcbfe275f203c4ccc371ca44f16c5b8cc

Contents?: true

Size: 1.37 KB

Versions: 41

Compression:

Stored size: 1.37 KB

Contents

# encoding: binary

require File.expand_path('../../../spec_helper', __FILE__)


module AMQ
  module Protocol
    class Tx
      describe Select do
        describe '.encode' do
          it 'encodes the parameters into a MethodFrame' do
            channel = 1
            method_frame = Select.encode(channel)
            method_frame.payload.should == "\000Z\000\n"
            method_frame.channel.should == 1
          end
        end
      end

      # describe SelectOk do
      #   describe '.decode' do
      #   end
      # end

      describe Commit do
        describe '.encode' do
          it 'encodes the parameters into a MethodFrame' do
            channel = 1
            method_frame = Commit.encode(channel)
            method_frame.payload.should == "\000Z\000\024"
            method_frame.channel.should == 1
          end
        end
      end
      
      # describe CommitOk do
      #   describe '.decode' do
      #   end
      # end

      describe Rollback do
        describe '.encode' do
          it 'encodes the parameters into a MethodFrame' do
            channel = 1
            method_frame = Rollback.encode(channel)
            method_frame.payload.should == "\000Z\000\036"
            method_frame.channel.should == 1
          end
        end
      end

      # describe RollbackOk do
      #   describe '.decode' do
      #   end
      # end
    end
  end
end

Version data entries

41 entries across 41 versions & 1 rubygems

Version Path
amq-protocol-0.5.0 spec/amq/protocol/tx_spec.rb