Validate string property method using new versioning scheme
()
| 168 | |
| 169 | |
| 170 | def test_string_new_version(): |
| 171 | """ |
| 172 | Validate string property method |
| 173 | using new versioning scheme |
| 174 | """ |
| 175 | maj_ver = "3000" |
| 176 | ver = SaltStackVersion(major=maj_ver) |
| 177 | assert not ver.minor |
| 178 | assert not ver.bugfix |
| 179 | assert maj_ver == ver.string |
| 180 | |
| 181 | |
| 182 | def test_string_new_version_minor(): |
nothing calls this directly
no test coverage detected