aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-10-20 21:51:27 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-10-20 21:51:27 +0300
commit550dab72a1563b6cb9f3d0bb8f9c92c02342caf9 (patch)
treeaeecf2796bacc5deeac9bf40b349d379907a6b93
parent98169c529f524c8f67f3fe6a30d62448214eafc6 (diff)
downloadpy-gsxws-550dab72a1563b6cb9f3d0bb8f9c92c02342caf9.tar.gz
py-gsxws-550dab72a1563b6cb9f3d0bb8f9c92c02342caf9.tar.bz2
py-gsxws-550dab72a1563b6cb9f3d0bb8f9c92c02342caf9.zip
Added test for AC+ status
-rw-r--r--tests/test_gsxws.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_gsxws.py b/tests/test_gsxws.py
index 1c46f12..ad32fa8 100644
--- a/tests/test_gsxws.py
+++ b/tests/test_gsxws.py
@@ -348,6 +348,9 @@ class TestRemoteWarrantyFunctions(TestCase):
self.product = Product(os.getenv('GSX_SN'))
self.wty = self.product.warranty(ship_to=os.getenv('GSX_SHIPTO'))
+ def test_acplus_status(self):
+ self.assertTrue(self.wty.acPlusFlag)
+
def test_warranty_lookup(self):
self.assertEqual(self.wty.warrantyStatus, 'Out Of Warranty (No Coverage)')