| Index: tools/telemetry/third_party/gsutilz/third_party/boto/tests/unit/cloudfront/test_distribution.py
|
| diff --git a/tools/telemetry/third_party/gsutilz/third_party/boto/tests/unit/cloudfront/test_distribution.py b/tools/telemetry/third_party/gsutilz/third_party/boto/tests/unit/cloudfront/test_distribution.py
|
| deleted file mode 100644
|
| index 38e27106c4c49c65825f3183a0b094cb456af997..0000000000000000000000000000000000000000
|
| --- a/tools/telemetry/third_party/gsutilz/third_party/boto/tests/unit/cloudfront/test_distribution.py
|
| +++ /dev/null
|
| @@ -1,21 +0,0 @@
|
| -import unittest
|
| -
|
| -from boto.cloudfront.distribution import DistributionConfig
|
| -from boto.cloudfront.logging import LoggingInfo
|
| -
|
| -
|
| -class CloudfrontDistributionTest(unittest.TestCase):
|
| - cloudfront = True
|
| -
|
| - def setUp(self):
|
| - self.dist = DistributionConfig()
|
| -
|
| - def test_logging(self):
|
| - # Default.
|
| - self.assertEqual(self.dist.logging, None)
|
| -
|
| - # Override.
|
| - lo = LoggingInfo(bucket='whatever', prefix='override_')
|
| - dist = DistributionConfig(logging=lo)
|
| - self.assertEqual(dist.logging.bucket, 'whatever')
|
| - self.assertEqual(dist.logging.prefix, 'override_')
|
|
|