summaryrefslogtreecommitdiff
path: root/README.md
blob: 8fd759cb2cea6159deda3a81e936fdca8a6caa7f (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# ert-async.el

This library provides the function `ert-deftest-async`, which works
just like `ert-deftest`, except that it works for async tests.

## Installation

Add this to get font locking for `ert-deftest-async`:

```lisp
(remove-hook 'emacs-lisp-mode-hook 'ert--activate-font-lock-keywords)
(add-hook 'emacs-lisp-mode-hook 'ert-async-activate-font-lock-keywords)
```

## Usage

The function `ert-deftest-async` works just like `ert-deftest`, except
that the `callbacks` argument is a list of callback functions. Unless
all functions has been called before `ert-async-timeout` seconds, the
test fails.

An example. When the function `async-call` callbacks, the functions
`done-1` and `done-2` are called.

```lisp
(ert-deftest-async my-async-test (done-1 done-2)
  (async-call-1 done-1)
  (async-call-2 done-2))
```

Note that if a callback function is called with a string as argument,
the test will fail with that error string. So if the function
`async-call` above callbacks with an argument, the test would have to
be written as:

```lisp
(ert-deftest-async my-async-test (done-1 done-2)
  (async-call-1 (lambda () (funcall done-1)))
  (async-call-2 (lambda () (funcall done-2))))
```

Passing a string as argument to a callback function can be useful when
you don't want a function to callback, for example:

```lisp
(ert-deftest-async my-async-test (done)
  (async-call
   (lambda ()
     (funcall done "should not callback, but did")))
  (funcall done))
```