Remove meaningless stdout message (#2313)

Stops to output the meaningless message to standard output when testing.
Obvious fix.

Signed-off-by: ERAMOTO Masaya <eramoto.masaya@jp.fujitsu.com>
This commit is contained in:
eramoto 2017-11-18 05:56:36 +09:00 committed by Adam Leff
parent 65df85b24e
commit a948900f88

View file

@ -45,7 +45,6 @@ describe Inspec::DirProvider do
it 'must not read files not covered' do
not_covered = File.expand_path('../../helper.rb', __FILE__)
puts "#{not_covered}"
File.file?(not_covered).must_equal true
subject.read(not_covered).must_be_nil
end