Api_PracticeTest::testDelete PHP Method

testDelete() public method

public testDelete ( )
    public function testDelete()
    {
        $source = file_get_contents(__DIR__ . '/files/Practice.xml');
        $this->post('Organization', $source, array('Category' => services\Practice::getOeFhirProfile() . '; scheme=http://hl7.org/fhir/tag/profile'));
        $this->delete(preg_replace('|/_history/.*$|', '', $this->response->getLocation()));
        $this->assertResponseCode(204);
    }