/** @test */
 function it_transformers_a_collection_of_the_model()
 {
     $this->makeUsers(10, true);
     $transformer = new UserTransformer();
     $users = User::get();
     // make sure its the same count as the created users.
     $this->assertCount(10, $transformer->transform($users));
 }