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" {>= "5.1.0"} 14 "core" {>= "v0.17" & < "v0.18"} 15 "core_unix" {>= "v0.17" & < "v0.18"} 16 "mlt_parser" {>= "v0.17" & < "v0.18"} 17 "ppx_expect" {>= "v0.17" & < "v0.18"} 18 "ppx_inline_test" {>= "v0.17" & < "v0.18"} 19 "ppx_jane" {>= "v0.17" & < "v0.18"} 20 "ppx_optcomp" {>= "v0.17" & < "v0.18"} 21 "toplevel_backend" {>= "v0.17" & < "v0.18"} 22 "base-threads" 23 "dune" {>= "3.11.0"} 24 "ocaml-compiler-libs" {>= "v0.11.0"} 25 "ocamlfind" {>= "1.7.2"} 26 "ppxlib" {>= "0.28.0"} 27] 28available: arch != "arm32" & arch != "x86_32" 29synopsis: "Expectation tests for the OCaml toplevel" 30description: " 31Allows one to write both toplevel phrases and the expected output from 32the toplevel in the same file. This provides an easy way to test 33compilations errors as well as provide a nice alternative to using 34the toplevel in a terminal. 35" 36url { 37src: "https://github.com/janestreet/toplevel_expect_test/archive/refs/tags/v0.17.0.tar.gz" 38checksum: "sha256=c0f0d343b8ef24bc96464cd90c986bb4ede20e70b5ec168035cc0e6d410fefc7" 39}