1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
(executable
(name test_header)
(modules test_header)
(forbidden_libraries base)
(libraries http alcotest sexplib0))
(rule
(alias runtest)
(package http)
(action
(run ./test_header.exe)))
(test
(name test_parser)
(enabled_if false)
(modules test_parser)
(package http)
(preprocess
(pps
base_quickcheck.ppx_quickcheck
ppx_assert
ppx_sexp_conv
ppx_compare
ppx_here))
(libraries http base_quickcheck alcotest))
(test
(name test_request)
(modules test_request)
(package http)
(libraries http alcotest))
(test
(name test_response)
(modules test_response)
(package http)
(libraries http alcotest))
|