예제 #1
0
 public function testIsDevelopment()
 {
     $parser = new VersionParser();
     $this->assertFalse($parser->isDevelopment('1.0.0'));
     $this->assertFalse($parser->isDevelopment('1.0.0b'));
     $this->assertTrue($parser->isDevelopment('1.0.0-dev'));
 }