Expect-like framework
  • OCaml 99.1%
  • Makefile 0.9%
Find a file
Marcello Seri c6e6b994cf Refactor tests to improve separation
Signed-off-by: Marcello Seri <marcello.seri@citrix.com>
2017-07-26 11:40:06 +01:00
src First commit 2017-07-26 11:01:04 +01:00
test Refactor tests to improve separation 2017-07-26 11:40:06 +01:00
.gitignore First commit 2017-07-26 11:01:04 +01:00
.travis.yml Update travis 2017-07-26 11:14:15 +01:00
CHANGES.txt Refactor tests to improve separation 2017-07-26 11:40:06 +01:00
COPYING.txt First commit 2017-07-26 11:01:04 +01:00
expect-pcre.opam opam: add missing test dependencies 2017-07-26 11:18:52 +01:00
expect-str.opam opam: add missing test dependencies 2017-07-26 11:18:52 +01:00
expect.opam Update opam files 2017-07-26 11:18:00 +01:00
jbuild First commit 2017-07-26 11:01:04 +01:00
Makefile First commit 2017-07-26 11:01:04 +01:00
opam First commit 2017-07-26 11:01:04 +01:00
README.txt First commit 2017-07-26 11:01:04 +01:00

********************************************************************************
*  ocaml-expect: Expect-like framework for OCaml                               *
*                                                                              *
*  Copyright (C) 2010, OCamlCore SARL                                          *
*                                                                              *
*  This library is free software; you can redistribute it and/or modify it     *
*  under the terms of the GNU Lesser General Public License as published by    *
*  the Free Software Foundation; either version 2.1 of the License, or (at     *
*  your option) any later version, with the OCaml static compilation           *
*  exception.                                                                  *
*                                                                              *
*  This library is distributed in the hope that it will be useful, but         *
*  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY  *
*  or FITNESS FOR A PARTICULAR PURPOSE. See the file COPYING for more          *
*  details.                                                                    *
*                                                                              *
*  You should have received a copy of the GNU Lesser General Public License    *
*  along with this library; if not, write to the Free Software Foundation,     *
*  Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA               *
********************************************************************************

ocaml-expect - Expect-like framework
====================================

This is a simple implementation of `expect` to help building unitary testing
of interactive program.

It helps to receive question and send answers from an interactive process.
You can match the question using a regular expression (Str). You can also use
a timeout to ensure that the process answer in time.

See the [Expect manual](http://expect.nist.gov/) for more information and
example.

See the file [INSTALL.txt](INSTALL.txt) for building and installation
instructions.

[Home page](http://forge.ocamlcore.org/projects/ocaml-expect/)

Copyright and license
---------------------

(C) 2010 OCamlCore SARL

ocaml-expect is distributed under the terms of the GNU Lesser General Public
License version 2.1 with OCaml linking exception.

See [COPYING.txt](COPYING.txt) for more information.