-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Assertions for HUnit with difference reporting -- -- HUnit assertion operators that show a diff on failure. @package HUnit-Diff @version 0.1 -- | Very basic support for diffing with HUnit. -- -- Limitations: -- -- -- -- Despite these limitations, I find it more useful than HUnit's -- defaults. module Test.HUnit.Diff -- | Like @?= but producing a colored diff on failure. (@?==) :: (Eq a, Show a) => a -> a -> Assertion -- | Like @=? but producing a colored diff on failure. (@==?) :: (Eq a, Show a) => a -> a -> Assertion