Fix the test inheritance for the tests.

This commit is contained in:
Parker Moore
2015-02-20 13:35:02 -08:00
parent d2b19963c1
commit 4b59eb4175
31 changed files with 81 additions and 81 deletions

View File

@@ -1,6 +1,6 @@
require 'helper'
class TestDocument < Test::Unit::TestCase
class TestDocument < Minitest::Test
context "a document in a collection" do
setup do
@@ -283,7 +283,7 @@ class TestDocument < Test::Unit::TestCase
context "without output overrides" do
should "be output according to collection defaults" do
assert_not_nil @files.find { |doc| doc.relative_path == "_slides/example-slide-4.html" }
refute_nil @files.find { |doc| doc.relative_path == "_slides/example-slide-4.html" }
end
end