(self)
| 6 | class TestCloudWatch(unittest.TestCase): |
| 7 | |
| 8 | def setUp(self): |
| 9 | |
| 10 | self.metric = MetricObject("ERROR", 1, None) |
| 11 | self.metric.timestamp = strftime("%Y%m%dT%H:%M:00Z", gmtime(self.metric.timestamp)) |
| 12 | |
| 13 | self.cw = CloudWatch("key", "secretkey", self.metric) |
| 14 | self.cw.get_instance_id("myserverID").set_params().get_signed_url() |
| 15 | |
| 16 | def test_params(self): |
| 17 |
nothing calls this directly
no test coverage detected