Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Straub <bs@github.com>2013-11-15 02:05:52 +0400
committerBen Straub <bs@github.com>2013-11-15 02:05:52 +0400
commit1782038144ef3413831801bb9c2f3038a84ac6f4 (patch)
treef074cc30890a20f5418c10fae1815ca516588a27 /tests/README.md
parent7b947bf5cc59eefa83c28eb5f5fd8434207ebb8b (diff)
Rename tests-clar to tests
Diffstat (limited to 'tests/README.md')
-rw-r--r--tests/README.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/README.md b/tests/README.md
new file mode 100644
index 000000000..3aeaaf464
--- /dev/null
+++ b/tests/README.md
@@ -0,0 +1,22 @@
+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.