Playing around with Travis-ci.

This commit is contained in:
jgen
2014-02-10 00:33:57 -05:00
parent 5b0f0b4bef
commit c3835ceea9
2 changed files with 42 additions and 0 deletions

18
tests/simple_test.php Normal file
View File

@ -0,0 +1,18 @@
<?php
require_once('../lib/simpletest/autorun.php');
class SimpleTestCase extends UnitTestCase {
var $options;
function SimpleTestCase() {
$options = getopt("database:url:");
}
function testOptions() {
print_r($options);
$this->assertTrue(true);
}
}