Source

						public function testSchemaAccess() {
		$schema = array('foo' => array('type' => 'string'));
		$entity = new Entity(compact('schema'));
		$this->assertEqual($schema, $entity->schema());
	}