public function testLoadsProfileResource()
 {
     $profile = IformResource::profile();
     $this->assertInstanceOf('Iform\\Resources\\Profile\\Profile', $profile);
 }
 public function testFetchesAll()
 {
     $profile = IformResource::profile();
     $results = $profile->withAllFields()->first(10)->fetchAll();
 }