aboutsummaryrefslogtreecommitdiff
path: root/tests/test_installation.py
blob: 06af7d6b250b7dbd47d7a5eae8549680b5b350b9 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/python
from __future__ import absolute_import, print_function, division
from pymba import Vimba


def test_installation():
    with Vimba() as vimba:
	    version = vimba.getVersion()
	    assert version == '1.2.0'