# 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' require 'cosmos/tools/cmd_tlm_server/background_task' module Cosmos describe BackgroundTask do describe "call" do it "should raise an error" do expect { BackgroundTask.new.call }.to raise_error end end describe "stop" do it "should exist" do BackgroundTask.new.should respond_to(:stop) end end end end