Example #1
0
 def test_get_status_alumni(self):
     results = lab.get_status("ALUMNI")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
Example #2
0
 def test_get_status_benedum(self):
     results = lab.get_status("BENEDUM")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
Example #3
0
 def test_get_status_hillman(self):
     self.assertIsInstance(lab.get_status("HILLMAN"), dict)
Example #4
0
 def test_get_status_sutherland(self):
     self.assertIsInstance(lab.get_status("SUTH"), dict)
Example #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())
Example #6
0
 def test_get_status_lawrence(self):
     self.assertIsInstance(lab.get_status("LAWRENCE"), dict)
Example #7
0
 def test_get_status_alumni(self):
     self.assertIsInstance(lab.get_status("ALUMNI"), dict)
Example #8
0
 def test_get_status_hillman(self):
     results = lab.get_status("HILLMAN")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
Example #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())
Example #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())
Example #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())
Example #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())
Example #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())
Example #14
0
 def test_get_status_cathg62(self):
     results = lab.get_status("CATH_G62")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
Example #15
0
 def test_get_status_benedum(self):
     self.assertIsInstance(lab.get_status("BENEDUM"), dict)
Example #16
0
 def test_get_status_lawrence(self):
     results = lab.get_status("LAWRENCE")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
Example #17
0
 def test_get_status_cathg62(self):
     self.assertIsInstance(lab.get_status("CATH_G62"), dict)
Example #18
0
 def test_get_status_sutherland(self):
     results = lab.get_status("SUTH")
     self.assertIsInstance(results, dict)
     self.assertTrue("status" in results.keys())
Example #19
0
 def test_lab_get_status_cathg27(self):
     self.assertIsInstance(lab.get_status("CATH_G27"), dict)