From 1bf91d4281932030bcbbe9ace852fe71d2821cd9 Mon Sep 17 00:00:00 2001 From: Adam Roben Date: Fri, 13 Feb 2015 14:31:40 -0500 Subject: [PATCH] Use .html files in some #documentation? tests This is what we were trying to classify in the twbs/bootstrap repository, for example. --- test/test_blob.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/test_blob.rb b/test/test_blob.rb index 149588e9..d59e6794 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -442,10 +442,10 @@ class TestBlob < Minitest::Test end def test_documentation - assert_predicate fixture_blob("doc/foo.md"), :documentation? - assert_predicate fixture_blob("docs/foo.md"), :documentation? - refute_predicate fixture_blob("project/doc/foo.md"), :documentation? - refute_predicate fixture_blob("project/docs/foo.md"), :documentation? + assert_predicate fixture_blob("doc/foo.html"), :documentation? + assert_predicate fixture_blob("docs/foo.html"), :documentation? + refute_predicate fixture_blob("project/doc/foo.html"), :documentation? + refute_predicate fixture_blob("project/docs/foo.html"), :documentation? assert_predicate fixture_blob("Documentation/foo.md"), :documentation? refute_predicate fixture_blob("project/Documentation/foo.md"), :documentation?