예제 #1
0
def test_getVersion_unhappy():
    plugin = PluginObject()
    with pytest.raises(Exception):
        plugin.getVersion()  # We didn't set a version yet.
예제 #2
0
def test_getVersion_happy():
    plugin = PluginObject()
    plugin.setVersion("12.0.0")
    assert plugin.getVersion() == "12.0.0"
예제 #3
0
def test_getVersion_unhappy():
    plugin = PluginObject()
    with pytest.raises(ValueError):
        plugin.getVersion()  # We didn't set a version yet.