finder() public static method

public static finder ( $class = __CLASS__ )
Exemplo n.º 1
0
 function test_belongs_to()
 {
     $track = Track::finder()->withAlbum()->find('id = ?', 1);
     $this->assertEqual($track->id, "1");
     $this->assertEqual($track->song_name, "Track 1");
     $this->assertEqual($track->Album->title, "Album 1");
 }