this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/toplevel_expect_test" 5bug-reports: "https://github.com/janestreet/toplevel_expect_test/issues" 6dev-repo: "git+https://github.com/janestreet/toplevel_expect_test.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/toplevel_expect_test/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.07.0"} 14 "core" {>= "v0.12.4" & < "v0.13"} 15 "core_kernel" {>= "v0.12" & < "v0.13"} 16 "mlt_parser" {>= "v0.12" & < "v0.13"} 17 "ppx_expect" {>= "v0.12" & < "v0.13"} 18 "ppx_here" {>= "v0.12" & < "v0.13"} 19 "ppx_inline_test" {>= "v0.12" & < "v0.13"} 20 "ppx_jane" {>= "v0.12" & < "v0.13"} 21 "base-threads" 22 "dune" {>= "1.5.1"} 23 "ocaml-compiler-libs" {>= "v0.11.0"} 24 "ocamlfind" {>= "1.7.2"} 25 "ppxlib" {>= "0.7.0" & < "0.9.0"} 26] 27synopsis: "Expectation tests for the OCaml toplevel" 28description: " 29Allows one to write both toplevel phrases and the expected output from 30the toplevel in the same file. This provides an easy way to test 31compilations errors as well as provide a nice alternative to using 32the toplevel in a terminal. 33" 34url { 35 src: 36 "https://github.com/janestreet/toplevel_expect_test/archive/v0.12.2.tar.gz" 37 checksum: [ 38 "sha256=b67b2a88b211b6b90f5d9d59c5a902799eacd42404b1ca42b0b80b6096274efb" 39 "md5=dddf9810458ae33a32df05c22e7b6a93" 40 ] 41}