(self)
| 129 | |
| 130 | class TestFindBucketKey(unittest.TestCase): |
| 131 | def test_unicode(self): |
| 132 | s3_path = '\u1234' + '/' + '\u5678' |
| 133 | bucket, key = find_bucket_key(s3_path) |
| 134 | self.assertEqual(bucket, '\u1234') |
| 135 | self.assertEqual(key, '\u5678') |
| 136 | |
| 137 | def test_bucket(self): |
| 138 | bucket, key = find_bucket_key('bucket') |
nothing calls this directly
no test coverage detected