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" & < "4.09.0"} 14 "core_kernel" {>= "v0.12" & < "v0.13"} 15 "mlt_parser" {>= "v0.12" & < "v0.13"} 16 "ppx_expect" {>= "v0.12" & < "v0.13"} 17 "ppx_here" {>= "v0.12" & < "v0.13"} 18 "ppx_inline_test" {>= "v0.12" & < "v0.13"} 19 "ppx_jane" {>= "v0.12" & < "v0.13"} 20 "base-threads" 21 "dune" {>= "1.5.1"} 22 "ocaml-compiler-libs" {>= "v0.11.0"} 23 "ocamlfind" {>= "1.7.2"} 24 "ppxlib" {>= "0.7.0" & < "0.9.0"} 25] 26synopsis: "Expectation tests for the OCaml toplevel" 27description: " 28Allows one to write both toplevel phrases and the expected output from 29the toplevel in the same file. This provides an easy way to test 30compilations errors as well as provide a nice alternative to using 31the toplevel in a terminal. 32" 33url { 34 src: 35 "https://github.com/janestreet/toplevel_expect_test/archive/v0.12.1.tar.gz" 36 checksum: [ 37 "sha256=f98712cffd6ffe574a515872024272a0fb518eaba20364845733cb72b32148fc" 38 "md5=3447f1eccdde6d44cb13a89764ca0717" 39 ] 40}