Files
libgit2/tests
Brian Lopez d5710f45f5 Add revwalk filter API
This works similarly to the hide API. It allows the caller to specify
a callback to be invoked at optimal times during the revwalk
process in order to give the caller control over which commits to filter
from iteration. This is different from the hide API in that only the
commit in question will be potentially filtered.
2018-01-25 19:38:00 -08:00
..
2016-05-26 13:01:07 -05:00
2017-12-20 16:21:05 +00:00
2017-12-23 14:59:07 +00:00
2018-01-25 19:38:00 -08:00
2015-06-29 21:23:09 +00:00
2017-02-17 13:01:49 +00:00
2015-02-27 00:30:50 -05:00

Writing Clar tests for libgit2

For information on the Clar testing framework and a detailed introduction please visit:

https://github.com/vmg/clar

  • Write your modules and tests. Use good, meaningful names.

  • Make sure you actually build the tests by setting:

      cmake -DBUILD_CLAR=ON build/
    
  • Test:

      ./build/libgit2_clar
    
  • Make sure everything is fine.

  • Send your pull request. That's it.