-
Notifications
You must be signed in to change notification settings - Fork 5
/
toplevel_expect_test.opam
36 lines (36 loc) · 1.12 KB
/
toplevel_expect_test.opam
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
opam-version: "2.0"
maintainer: "Jane Street developers"
authors: ["Jane Street Group, LLC"]
homepage: "https://github.com/janestreet/toplevel_expect_test"
bug-reports: "https://github.com/janestreet/toplevel_expect_test/issues"
dev-repo: "git+https://github.com/janestreet/toplevel_expect_test.git"
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/toplevel_expect_test/index.html"
license: "MIT"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "5.1.0"}
"core"
"core_kernel"
"core_unix"
"mlt_parser"
"ppx_expect"
"ppx_inline_test"
"ppx_jane"
"ppx_optcomp"
"toplevel_backend"
"base-threads"
"dune" {>= "3.11.0"}
"ocaml-compiler-libs" {>= "v0.11.0"}
"ocamlfind" {>= "1.7.2"}
"ppxlib" {>= "0.33.0"}
]
available: arch != "arm32" & arch != "x86_32"
synopsis: "Expectation tests for the OCaml toplevel"
description: "
Allows one to write both toplevel phrases and the expected output from
the toplevel in the same file. This provides an easy way to test
compilations errors as well as provide a nice alternative to using
the toplevel in a terminal.
"