this repo has no description
1opam-version: "2.0" 2synopsis: "A ppx replacement of pa_ounit" 3description: """\ 4ppx_test tries to replace pa_ounit. It provides the following syntax sugars: 5 6* _with_location_ e, returns e and its source code location 7* _module_path_, returns the current module path name 8* let %TEST name = e, a replacement of TEST name = e 9* let %TEST_UNIT name = e, a replacement of TEST_UNIT name = e""" 10maintainer: "jun.furuse@gmail.com" 11authors: "Jun Furuse" 12license: "MIT" 13homepage: "https://gitlab.com/camlspotter/ppx_test" 14bug-reports: "https://gitlab.com/camlspotter/ppx_test/-/issues" 15depends: [ 16 "dune" {>= "2.0"} 17 "re" {>= "1.8.0"} 18 "ppxx" {>= "2.5.0"} 19 "ocaml" {>= "4.08.0"} 20] 21build: ["dune" "build" "-p" name "-j" jobs] 22dev-repo: "git+https://gitlab.com/camlspotter/ppx_test" 23url { 24 src: 25 "https://gitlab.com/camlspotter/ppx_test/-/archive/1.8.0/ppx_test-1.8.0.tar.gz" 26 checksum: [ 27 "md5=11571478e9dd5b3c04681e89a0106044" 28 "sha512=12e67fa5eff5bc7df6575d01ca7aa53d28a1ff044a007dd3791af13388311e8a6c2e1130cc2bd338415b229c6f101355a4205a9c905382248a1d7857773047ec" 29 ] 30}