示例#1
0
 def test_get_status_alumni(self):
     results = lab.get_status("ALUMNI")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
示例#2
0
 def test_get_status_benedum(self):
     results = lab.get_status("BENEDUM")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
示例#3
0
 def test_get_status_hillman(self):
     self.assertIsInstance(lab.get_status("HILLMAN"), dict)
示例#4
0
 def test_get_status_sutherland(self):
     self.assertIsInstance(lab.get_status("SUTH"), dict)
示例#5
0
 def test_get_status_alumni(self):
     responses.add(responses.GET, lab.URL, body=TEST_DATA, status=200)
     results = lab.get_status("ALUMNI")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
示例#6
0
 def test_get_status_lawrence(self):
     self.assertIsInstance(lab.get_status("LAWRENCE"), dict)
示例#7
0
 def test_get_status_alumni(self):
     self.assertIsInstance(lab.get_status("ALUMNI"), dict)
示例#8
0
 def test_get_status_hillman(self):
     results = lab.get_status("HILLMAN")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
示例#9
0
 def test_get_status_hillman(self):
     responses.add(responses.GET, lab.URL, body=TEST_DATA, status=200)
     results = lab.get_status("HILLMAN")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
示例#10
0
 def test_get_status_sutherland(self):
     responses.add(responses.GET, lab.URL, body=TEST_DATA, status=200)
     results = lab.get_status("SUTH")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
示例#11
0
 def test_get_status_lawrence(self):
     responses.add(responses.GET, lab.URL, body=TEST_DATA, status=200)
     results = lab.get_status("LAWRENCE")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
示例#12
0
 def test_get_status_cathg62(self):
     responses.add(responses.GET, lab.URL, body=TEST_DATA, status=200)
     results = lab.get_status("CATH_G62")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
示例#13
0
 def test_get_status_benedum(self):
     responses.add(responses.GET, lab.URL, body=TEST_DATA, status=200)
     results = lab.get_status("BENEDUM")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
示例#14
0
 def test_get_status_cathg62(self):
     results = lab.get_status("CATH_G62")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
示例#15
0
 def test_get_status_benedum(self):
     self.assertIsInstance(lab.get_status("BENEDUM"), dict)
示例#16
0
 def test_get_status_lawrence(self):
     results = lab.get_status("LAWRENCE")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
示例#17
0
 def test_get_status_cathg62(self):
     self.assertIsInstance(lab.get_status("CATH_G62"), dict)
示例#18
0
 def test_get_status_sutherland(self):
     results = lab.get_status("SUTH")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
示例#19
0
 def test_lab_get_status_cathg27(self):
     self.assertIsInstance(lab.get_status("CATH_G27"), dict)