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