diff --git a/.travis.yml b/.travis.yml index 57822622..38dc2c5f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,4 +12,4 @@ before_script: - make build script: - - vendor/bin/phpunit + - make tests diff --git a/Makefile b/Makefile index 1797dc6c..8f5df092 100644 --- a/Makefile +++ b/Makefile @@ -23,6 +23,9 @@ reset-db: rm database/testing.sqlite make db +test: + vendor/bin/phpunit --testdox tests + schema: #php artisan infyom:scaffold Airlines --fieldsFile=database/schema/airlines.json php artisan infyom:scaffold Aircraft --fieldsFile=database/schema/aircraft.json diff --git a/tests/PIREPTest.php b/tests/PIREPTest.php new file mode 100644 index 00000000..dbbc47d2 --- /dev/null +++ b/tests/PIREPTest.php @@ -0,0 +1,18 @@ +assertTrue(true); + } +}