test when bugfix is an empty string
()
| 367 | |
| 368 | |
| 369 | def test_bugfix_string(): |
| 370 | """ |
| 371 | test when bugfix is an empty string |
| 372 | """ |
| 373 | ret = SaltStackVersion(3000, 1, "", 0, 0, None) |
| 374 | assert ret.info == (3000, 1) |
| 375 | assert ret.minor == 1 |
| 376 | assert ret.bugfix is None |
| 377 | |
| 378 | |
| 379 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected