aboutsummaryrefslogtreecommitdiff
path: root/pyvimba/tests/test_systemfeature.py
diff options
context:
space:
mode:
authorJohn Sun <jsun@sightmachine.com>2014-04-04 15:49:14 -0700
committerJohn Sun <jsun@sightmachine.com>2014-04-04 15:49:14 -0700
commit3c1ca240eb7d90e7c7e925c06712a59a4063cb7e (patch)
treea16466e168fd42f7f184fe5f96947e918c9a4c74 /pyvimba/tests/test_systemfeature.py
parentf71223d809af8cb749f6a3b37b3a29a022322d02 (diff)
downloadpymba-3c1ca240eb7d90e7c7e925c06712a59a4063cb7e.tar.gz
pymba-3c1ca240eb7d90e7c7e925c06712a59a4063cb7e.zip
Rename directory to pymba instead of pyvimba.
Fix test_systemfeatures.py
Diffstat (limited to 'pyvimba/tests/test_systemfeature.py')
-rw-r--r--pyvimba/tests/test_systemfeature.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/pyvimba/tests/test_systemfeature.py b/pyvimba/tests/test_systemfeature.py
deleted file mode 100644
index 49a2d3e..0000000
--- a/pyvimba/tests/test_systemfeature.py
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/python
-
-from pyvimba.vimba import *
-
-def test_systemfeature():
- # get system object
- vimba = Vimba()
- system = vimba.getSystem()
-
- # list system features
- for featureName in system.getFeatureNames():
- print 'System feature:', featureName
-
- # shutdown Vimba
- vimba.shutdown()
-