Push more tests for location services, setup travis CI integration

This commit is contained in:
Dane Everitt 2017-06-15 23:03:22 -05:00
parent 13cd01cfe6
commit 760525a673
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
8 changed files with 279 additions and 69 deletions

View file

@ -31,3 +31,10 @@ $factory->state(Pterodactyl\Models\User::class, 'admin', function () {
'root_admin' => true,
];
});
$factory->define(Pterodactyl\Models\Location::class, function (Faker\Generator $faker) {
return [
'short' => $faker->domainWord,
'long' => $faker->catchPhrase,
];
});