aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-10-09 11:00:24 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-10-09 11:00:24 +0300
commit3420f74425c8e8247bef4a916bc053f1ed95df07 (patch)
tree0d5e61da7ae627748ed74990ba4b462cf6bf42b9 /tests
parentd278969719a9fd089fe39eb74c31fcfe1ddac4fd (diff)
downloadpy-gsxws-3420f74425c8e8247bef4a916bc053f1ed95df07.tar.gz
py-gsxws-3420f74425c8e8247bef4a916bc053f1ed95df07.tar.bz2
py-gsxws-3420f74425c8e8247bef4a916bc053f1ed95df07.zip
Fix diags.run_test
Diffstat (limited to 'tests')
-rw-r--r--tests/test_gsxws.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/test_gsxws.py b/tests/test_gsxws.py
index 22372ab..2239419 100644
--- a/tests/test_gsxws.py
+++ b/tests/test_gsxws.py
@@ -52,6 +52,8 @@ class DiagnosticsTestCase(TestCase):
device = Product(sn=self.sn)
self.diag = diagnostics.Diagnostics(serialNumber=self.sn)
self.diag.shipTo = os.getenv('GSX_SHIPTO')
+ suites = self.diag.fetch_suites()
+ self.suite = suites[0]
def test_fetch(self):
res = self.diag.fetch()
@@ -68,8 +70,11 @@ class DiagnosticsTestCase(TestCase):
self.assertUnicodeOrInt(r.value)
def test_fetch_suites(self):
- suites = self.diag.fetch_suites()
- self.assertIsInstance(suites[0][0], int)
+ self.assertIsInstance(self.suite[0], int)
+
+ def test_run_test(self):
+ self.diag.diagnosticSuiteId = self.suite[0]
+ self.diag.run_test()
def test_fetch_dc_url(self):
url = self.diag.fetch_dc_url()