()
| 34 | |
| 35 | |
| 36 | def test_dev_version(): |
| 37 | assert_(NumpyVersion('1.9.0.dev-Unknown') < '1.9.0') |
| 38 | for ver in ['1.9.0', '1.9.0a1', '1.9.0b2', '1.9.0b2.dev-ffffffff']: |
| 39 | assert_(NumpyVersion('1.9.0.dev-f16acvda') < ver) |
| 40 | |
| 41 | assert_(NumpyVersion('1.9.0.dev-f16acvda') == '1.9.0.dev-11111111') |
| 42 | |
| 43 | |
| 44 | def test_dev_a_b_rc_mixed(): |
nothing calls this directly
no test coverage detected