コード例 #1
0
ファイル: test_read_support.py プロジェクト: antbell/hue
 def test_footer_bytes(self):
     with open(self.f) as fo:
         self.assertEquals(327, parquet._get_footer_size(fo))
コード例 #2
0
 def test_footer_bytes(self):
     with open(self.f) as fo:
         self.assertEquals(327, parquet._get_footer_size(fo))
コード例 #3
0
 def test_footer_bytes(self):
     with io.open(TEST_FILE, 'rb') as fo:
         self.assertEquals(327, parquet._get_footer_size(fo))
コード例 #4
0
ファイル: test_read_support.py プロジェクト: cloudera/hue
 def test_footer_bytes(self):
     """Test reading the footer size value."""
     with io.open(TEST_FILE, 'rb') as fo:
         self.assertEquals(327, parquet._get_footer_size(fo))
コード例 #5
0
 def test_footer_bytes(self):
     """Test reading the footer size value."""
     with io.open(TEST_FILE, 'rb') as fo:
         self.assertEquals(327, parquet._get_footer_size(fo))