コード例 #1
0
ファイル: cartlist.py プロジェクト: atodorov/python-openshift
 def test_get_cart_list_embedded(self):
     '''If the list is not empty then PASS'''
     print "TEST: Getting list of embedded cartridges ..."
     oshift = OpenShiftExpress(rhlogin=None, password=None)
     carts = oshift.get_cartridges_list('embedded')
     self.assertTrue(len(carts) > 0)
     print carts
コード例 #2
0
ファイル: cartlist.py プロジェクト: atodorov/python-openshift
 def test_get_cart_list_unknown(self):
     '''If the list is not empty then PASS'''
     print "TEST: Getting list of unknown cartridges ..."
     oshift = OpenShiftExpress(rhlogin=None, password=None)
     try:
         carts = oshift.get_cartridges_list('unknown')
     except OpenShiftException as e:
         self.assertTrue(True)
         print e