Example #1
0
 def test_on_auto_load_format_default(self):
     with test_utils.AutoLoadFormatContext():
         for handle in self.handles:
             self.assertFalse(
                 self.uncompressed_resolver.is_supported(handle))
Example #2
0
 def test_on_auto_load_format_on_colab(self):
     with test_utils.AutoLoadFormatContext(
     ), test_utils.RunningOnColabContext():
         for handle in self.handles:
             self.assertTrue(
                 self.uncompressed_resolver.is_supported(handle))