Files
libgit2/tests
Carlos Martín Nieto ea5bf6bbce treebuilder: don't try to verify submodules exist in the odb
Submodules don't exist in the objectdb and the code is making us try to
look for a blob with its commit id, which is obviously not going to
work.

Skip the test if the user wants to insert a submodule.
2016-03-04 12:38:28 +01:00
..
2015-02-13 09:28:12 -05:00
2015-06-29 22:13:40 +00:00
2015-10-14 20:53:01 +02:00
2015-11-02 16:19:25 -05:00
2016-03-03 11:17:36 +01:00
2016-02-11 23:41:34 +01:00
2015-11-02 13:47:04 +01:00
2015-06-29 21:23:09 +00:00
2015-12-21 22:18:07 +03:00
2015-03-17 19:04:48 -04: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.