From deca369bfb82ecb672f0d50448d823c350784707 Mon Sep 17 00:00:00 2001 From: Michael Eschbacher Date: Wed, 6 May 2015 15:35:40 -0500 Subject: [PATCH] Seed the Person model --- tests/factories/all.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/factories/all.php b/tests/factories/all.php index 8f2f18e..7662e99 100644 --- a/tests/factories/all.php +++ b/tests/factories/all.php @@ -2,3 +2,8 @@ $factory('Model', [ 'hi'=>$faker->name ]); + +$factory('Person', [ + 'first'=>$faker->firstName, + 'last'=>$faker->lastName +]);