Skip to content
This repository was archived by the owner on Oct 1, 2021. It is now read-only.

Commit 89c9674

Browse files
committed
Add prove.php with unit test documentation
1 parent 409ff23 commit 89c9674

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

README.markdown

+7-1
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,10 @@ Get the current branch:
4545
Know if the repo has a given branch:
4646

4747
$hasBranch = $repo->hasBranch('master');
48-
// returns true
48+
// returns true
49+
50+
## Run test suite
51+
52+
All code is fully unit tested. To run tests on your server, from a CLI, run
53+
54+
php /path/to/php-git-repo/prove.php

prove.php

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
error_reporting(E_ALL);
4+
require_once(dirname(__FILE__).'/test/vendor/lime.php');
5+
6+
$h = new lime_harness();
7+
$h->base_dir = realpath(dirname(__FILE__).'/test');
8+
$h->register(glob(dirname(__FILE__).'/test/*Test.php'));
9+
exit($h->run() ? 0 : 1);

0 commit comments

Comments
 (0)