Initial commit.

This commit is contained in:
James Cole
2014-06-28 09:41:44 +02:00
parent fbc7a2a817
commit f826145599
42 changed files with 1984 additions and 0 deletions

17
app/tests/ExampleTest.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
class ExampleTest extends TestCase {
/**
* A basic functional test example.
*
* @return void
*/
public function testBasicExample()
{
$crawler = $this->client->request('GET', '/');
$this->assertTrue($this->client->getResponse()->isOk());
}
}