deregister() public method

public deregister ( Build $build )
$build Build
Esempio n. 1
0
 public function testBuildRegister()
 {
     $b = new Build('5.4.19');
     $pool = new BuildRegister();
     $pool->register($b);
     $pool->deregister($b);
 }
Esempio n. 2
0
 public function testBuildRegister()
 {
     $this->markTestSkipped('Why is this failing on travis only? >.<');
     $b = new Build('5.4.19');
     $pool = new BuildRegister();
     $pool->register($b);
     $pool->deregister($b);
 }
Esempio n. 3
0
 public function testBuildRegister()
 {
     if (getenv('TRAVIS')) {
         return $this->markTestSkipped('Why is this failing on travis only? >.<');
     }
     $b = new Build('5.4.19');
     $pool = new BuildRegister();
     $pool->register($b);
     $pool->deregister($b);
 }