Sha256: 179b6ea500ea035cb4c9487f45e1cee4f0dd99cef8f4a412e0bee4587edcec27
Contents?: true
Size: 787 Bytes
Versions: 59
Compression:
Stored size: 787 Bytes
Contents
# encoding: ascii-8bit # Copyright 2014 Ball Aerospace & Technologies Corp. # All Rights Reserved. # # This program is free software; you can modify and/or redistribute it # under the terms of the GNU General Public License # as published by the Free Software Foundation; version 3 with # attribution addendums as found in the LICENSE.txt require 'spec_helper' require 'cosmos/packet_logs/packet_log_writer_pair' module Cosmos describe PacketLogWriterPair do describe "initialize" do it "sets the cmd writer and tlm writer" do cmd = double("cmd_writer") tlm = double("tlm_writer") pair = PacketLogWriterPair.new(cmd, tlm) expect(pair.cmd_log_writer).to eql cmd expect(pair.tlm_log_writer).to eql tlm end end end end
Version data entries
59 entries across 59 versions & 1 rubygems