diff options
Diffstat (limited to 'tests/test_installation.py')
| -rw-r--r-- | tests/test_installation.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/test_installation.py b/tests/test_installation.py new file mode 100644 index 0000000..06af7d6 --- /dev/null +++ b/tests/test_installation.py @@ -0,0 +1,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' |
