# Copyright (C) 2011 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::FileReporter do it 'should write to given file' do file = File.join(File.dirname(__FILE__), '__output') begin File.delete(file) if File.exist?(file) reporter = RightConf::FileReporter.new(file) reporter.write("42\n43\n44") res = IO.read(file) res.count("\n").should == 3 ensure File.delete(file) rescue nil end end end