test/extra/checking/test_check.rb in nanoc-3.7.4 vs test/extra/checking/test_check.rb in nanoc-3.7.5

- old
+ new

@@ -1,9 +1,8 @@ # encoding: utf-8 class Nanoc::Extra::Checking::CheckTest < Nanoc::TestCase - def test_output_filenames with_site do |site| check = Nanoc::Extra::Checking::Check.new(site) assert check.output_filenames.empty? File.open('output/foo.html', 'w') { |io| io.write 'hello' } @@ -18,7 +17,6 @@ assert_raises Nanoc::Extra::Checking::OutputDirNotFoundError do check.output_filenames end end end - end