• Show log

    Commit

  • Hash : d2bbea82
    Author : Patrick Steinhardt
    Date : 2017-06-07T10:59:31

    tests: iterator_helpers: assert number of iterator items
    
    When the function `expect_iterator_items` surpasses the number of
    expected items, we simply break the loop. This causes us to trigger an
    assert later on which has message attached, which is annoying when
    trying to locate the root error cause. Instead, directly assert that the
    current count is still smaller or equal to the expected count inside of
    the loop.
    
    (cherry picked from commit 9aba76364fcb4755930856a7bafc5294ed3ee944)
    

  • README.md

  • 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.