Sha256: cb97ff249f5c92d5aafbd78c5868493fb843f22deac3773c214125cdd4c4cee3
Contents?: true
Size: 822 Bytes
Versions: 22
Compression:
Stored size: 822 Bytes
Contents
# Copyright (C) 2011-2012 RightScale, Inc, All Rights Reserved Worldwide. # # THIS PROGRAM IS CONFIDENTIAL AND PROPRIETARY TO RIGHTSCALE # AND CONSTITUTES A VALUABLE TRADE SECRET. Any unauthorized use, # reproduction, modification, or disclosure of this program is # strictly prohibited. Any use of this program by an authorized # licensee is strictly subject to the terms and conditions, # including confidentiality obligations, set forth in the applicable # License Agreement between RightScale.com, Inc. and # the licensee require File.expand_path(File.join(File.dirname(__FILE__), '..', 'spec_helper')) describe RightConf::StdoutReporter do it 'should write to STDOUT' do reporter = RightConf::StdoutReporter.new flexmock($stdout).should_receive(:print).with("42\n") reporter.report('42') end end
Version data entries
22 entries across 22 versions & 1 rubygems