diff options
| author | morefigs <morefigs@gmail.com> | 2018-06-22 15:59:49 +1000 |
|---|---|---|
| committer | morefigs <morefigs@gmail.com> | 2018-06-22 15:59:49 +1000 |
| commit | fac2f7b87ebebf0a3255b9d02cddff24fa194226 (patch) | |
| tree | 04e1a5633bba9cff7a0d31908f2011f2de7a565f /tests/test_installation.py | |
| parent | 4b22b288484dbdd7b614334cc328588df3e141ec (diff) | |
| download | pymba-fac2f7b87ebebf0a3255b9d02cddff24fa194226.tar.gz pymba-fac2f7b87ebebf0a3255b9d02cddff24fa194226.zip | |
rename
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' |
