1
1
mirror of https://github.com/qfpl/applied-fp-course.git synced 2024-11-30 02:14:01 +03:00
applied-fp-course/level07/tests/doctests.hs
Sean Chalmers 94711343b6 modFieldLabel in level05+ is 'almost' just the identity.
But that was largely due to missing field prefixes in the Comment record for
that level. Field prefixes added back in and added some doctests and changed the
wording for that section to explain a bit more of what is going on.
2017-10-05 14:35:39 +10:00

12 lines
175 B
Haskell

module Main where
import Test.DocTest (doctest)
main :: IO ()
main = doctest
[ "-isrc"
, "src/FirstApp/Conf.hs"
, "src/FirstApp/DB.hs"
, "src/FirstApp/Types.hs"
]