Source

						public function testRecordExists() {
		$this->assertFalse($this->record->exists());
		$this->record->sync(313);
		$this->assertIdentical(313, $this->record->id);
		$this->assertTrue($this->record->exists());

		$this->record = new Record(array('exists' => true));
		$this->assertTrue($this->record->exists());
	}