public function testDoubleInverseEagerLoadingBelongsToRelationship()
 {
     $user = User::createWith(['name' => 'cappuccino'], ['organization' => ['name' => 'Pokemon']]);
     // Eager load so that when we assert we make sure they're there
     $role = Role::create(['alias' => 'pikachu']);
     $user->roles()->save($role);
     // Eager load so that when we assert we make sure they're there
     $org = $role->users->first()->organization;
     $roleFound = Role::with('users.organization')->whereHas('users', function ($q) use($user) {
         $q->where('id', $user->getKey());
     })->first();
     $this->assertInstanceOf('Vinelab\\NeoEloquent\\Tests\\Functional\\QueryingRelations\\Role', $roleFound);
     $this->assertArrayHasKey('users', $roleFound->getRelations());
     $this->assertArrayHasKey('organization', $roleFound->users->first()->getRelations());
     $this->assertEquals('Pokemon', $roleFound->users->first()->organization->name);
     $this->assertEquals($role->toArray(), $roleFound->toArray());
 }