]> git.proxmox.com Git - libgit2.git/blob - tests/README.md
3aeaaf464c311ca94d67fb25f80a7b28d17de4be
[libgit2.git] / tests / README.md
1 Writing Clar tests for libgit2
2 ==============================
3
4 For information on the Clar testing framework and a detailed introduction
5 please visit:
6
7 https://github.com/vmg/clar
8
9
10 * Write your modules and tests. Use good, meaningful names.
11
12 * Make sure you actually build the tests by setting:
13
14 cmake -DBUILD_CLAR=ON build/
15
16 * Test:
17
18 ./build/libgit2_clar
19
20 * Make sure everything is fine.
21
22 * Send your pull request. That's it.