test/extra/checking/checks/test_stale.rb in nanoc-3.7.3 vs test/extra/checking/checks/test_stale.rb in nanoc-3.7.4

- old
+ new

@@ -18,30 +18,30 @@ assert Dir['content/*'].empty? assert Dir['output/*'].empty? # Empty FileUtils.mkdir_p('output') - assert self.calc_issues.empty? + assert calc_issues.empty? # One OK file File.open('content/index.html', 'w') { |io| io.write('stuff') } File.open('output/index.html', 'w') { |io| io.write('stuff') } - assert self.calc_issues.empty? + assert calc_issues.empty? end end def test_run_error with_site do |site| assert Dir['content/*'].empty? assert Dir['output/*'].empty? File.open('content/index.html', 'w') { |io| io.write('stuff') } File.open('output/WRONG.html', 'w') { |io| io.write('stuff') } - assert_equal 1, self.calc_issues.count - issue = self.calc_issues.to_a[0] - assert_equal "file without matching item", issue.description - assert_equal "output/WRONG.html", issue.subject + assert_equal 1, calc_issues.count + issue = calc_issues.to_a[0] + assert_equal 'file without matching item', issue.description + assert_equal 'output/WRONG.html', issue.subject end end def test_run_excluded with_site do |site| @@ -49,11 +49,11 @@ assert Dir['output/*'].empty? File.open('nanoc.yaml', 'w') { |io| io.write "prune:\n exclude: [ 'excluded.html' ]" } File.open('content/index.html', 'w') { |io| io.write('stuff') } File.open('output/excluded.html', 'w') { |io| io.write('stuff') } - assert self.calc_issues.empty? + assert calc_issues.empty? end end def test_run_excluded_with_broken_config with_site do |site| @@ -61,10 +61,10 @@ assert Dir['output/*'].empty? File.open('nanoc.yaml', 'w') { |io| io.write "prune:\n blah: meh" } File.open('content/index.html', 'w') { |io| io.write('stuff') } File.open('output/excluded.html', 'w') { |io| io.write('stuff') } - refute self.calc_issues.empty? + refute calc_issues.empty? end end end