Tests the find 'first' filter on a simple record set.

Returns

void

Source

						public function testSimpleFindFirst() {
		$result = MockComment::first();
		$this->assertTrue($result instanceof Record);

		$expected = 'First comment';
		$this->assertEqual($expected, $result->text);
	}