Files
libgit2/tests
Patrick Steinhardt 04fb12abb2 worktree: implement functions reading HEAD
Implement `git_repository_head_for_worktree` and
`git_repository_head_detached_for_worktree` for directly accessing a
worktree's HEAD without opening it as a `git_repository` first.
2017-02-13 11:03:01 +01:00
..
2016-05-26 13:01:07 -05:00
2015-06-29 22:13:40 +00:00
2016-05-04 11:15:56 -07:00
2016-03-31 10:41:33 -04:00
2014-04-11 21:55:36 +02:00
2016-10-09 16:05:48 +01:00
2016-06-21 07:58:33 +02:00
2016-12-29 12:55:49 +00:00
2017-01-14 16:37:00 +00:00
2016-12-17 00:55:06 +00:00
2015-06-29 21:23:09 +00:00
2015-02-27 00:30:50 -05:00
2014-12-07 22:09:00 +08:00
2013-11-14 14:05:52 -08: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.