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