()
| 47 | |
| 48 | |
| 49 | def test_dev0_version(): |
| 50 | assert_(NumpyVersion('1.9.0.dev0+Unknown') < '1.9.0') |
| 51 | for ver in ['1.9.0', '1.9.0a1', '1.9.0b2', '1.9.0b2.dev0+ffffffff']: |
| 52 | assert_(NumpyVersion('1.9.0.dev0+f16acvda') < ver) |
| 53 | |
| 54 | assert_(NumpyVersion('1.9.0.dev0+f16acvda') == '1.9.0.dev0+11111111') |
| 55 | |
| 56 | |
| 57 | def test_dev0_a_b_rc_mixed(): |
nothing calls this directly
no test coverage detected