• Show log

    Commit

  • Hash : 03c58778
    Author : Edward Thomson
    Date : 2018-03-19T09:20:35

    online::clone: skip creds fallback test
    
    At present, we have three online tests against bitbucket: one which
    specifies the credentials in the payload, one which specifies the
    correct credentials in the URL and a final one that specifies the
    incorrect credentials in the URL.  Bitbucket has begun responding to the
    latter test with a 403, which causes us to fail.
    
    Break these three tests into separate tests so that we can skip the
    latter until this is resolved on Bitbucket's end or until we can change
    the test to a different provider.
    

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