1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Fix parsing of stability for lowercased RC versions

This commit is contained in:
Jordi Boggiano 2012-09-04 15:59:29 +02:00
parent ecb6dcb60d
commit e01a9c564d
2 changed files with 4 additions and 3 deletions

View file

@ -240,9 +240,10 @@ class VersionParserTest extends \PHPUnit_Framework_TestCase
array('stable', '3.1.2-patch'),
array('alpha', '3.1.2-alpha5'),
array('beta', '3.1.2-beta'),
array('beta', '2.0b1'),
array('beta', '2.0B1'),
array('alpha', '1.2.0a1'),
array('alpha', '1.2_a1'),
array('RC', '2.0.0rc1')
);
}
}