diff options
author | Jim McStanton <jim.h.stanton@gmail.com> | 2018-11-24 16:58:56 -0600 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2018-11-24 23:58:56 +0100 |
commit | e3436179d0f51f7152695beecd90d6956e0b73d4 (patch) | |
tree | 3b1d177ecede353840d30f1e9756ce5c724f866b /tests | |
parent | a7f72c5ab15862cb344ee5d7d81e128d0c5e8f85 (diff) | |
download | hakyll-e3436179d0f51f7152695beecd90d6956e0b73d4.tar.gz |
Corrected assertion in unixFilterError test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Hakyll/Core/UnixFilter/Tests.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/Hakyll/Core/UnixFilter/Tests.hs b/tests/Hakyll/Core/UnixFilter/Tests.hs index 63d6698..29e2cbf 100644 --- a/tests/Hakyll/Core/UnixFilter/Tests.hs +++ b/tests/Hakyll/Core/UnixFilter/Tests.hs @@ -67,8 +67,10 @@ unixFilterError = do provider <- newTestProvider store result <- testCompiler store provider testMarkdown compiler case result of - CompilerError es -> True H.@=? any ("invalid option" `isInfixOf`) es + CompilerError es -> True H.@=? any containsIncorrectOptionMessage es _ -> H.assertFailure "Expecting CompilerError" cleanTestEnv where compiler = getResourceString >>= withItemBody (unixFilter "head" ["-#"]) + incorrectOptionMessages = ["invalid option", "illegal option"] + containsIncorrectOptionMessage output = any (`isInfixOf` output) incorrectOptionMessages |