Skip to content

Instantly share code, notes, and snippets.

@pjedrzejewski
Created March 16, 2012 12:30
Show Gist options
  • Save pjedrzejewski/2049871 to your computer and use it in GitHub Desktop.
Save pjedrzejewski/2049871 to your computer and use it in GitHub Desktop.
Purge before scenario.
<?php
/**
* @BeforeScenario
*/
public function purgeDatabase()
{
$em = $this->getEntityManager();
$purger = new ORMPurger($em);
$purger->purge();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment