update skeleton project

This commit is contained in:
Ignace Nyamagana Butera 2014-10-07 11:02:20 +02:00
commit 25a47261c3
10 changed files with 107 additions and 59 deletions

16
tests/ExampleTest.php Normal file
View file

@ -0,0 +1,16 @@
<?php
namespace League\Skeleton\Test;
class ExampleTest extends \PHPUnit_Framework_TestCase
{
/**
* Test that true does in fact equal true
*/
public function testTrueIsTrue()
{
$this->assertTrue(true);
}
}