mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
Clean up skips in test_binhex
This commit is contained in:
6
Lib/test/test_binhex.py
vendored
6
Lib/test/test_binhex.py
vendored
@@ -22,7 +22,8 @@ class BinHexTestCase(unittest.TestCase):
|
||||
|
||||
DATA = b'Jack is my hero'
|
||||
|
||||
@unittest.skip("TODO: RUSTPYTHON, AttributeError: module 'binascii' has no attribute 'crc_hqx'")
|
||||
# TODO: RUSTPYTHON
|
||||
@unittest.expectedFailure
|
||||
def test_binhex(self):
|
||||
with open(self.fname1, 'wb') as f:
|
||||
f.write(self.DATA)
|
||||
@@ -46,7 +47,8 @@ class BinHexTestCase(unittest.TestCase):
|
||||
|
||||
self.assertRaises(binhex.Error, binhex.binhex, self.fname3, self.fname2)
|
||||
|
||||
@unittest.skip("TODO: RUSTPYTHON, AttributeError: module 'binascii' has no attribute 'crc_hqx'")
|
||||
# TODO: RUSTPYTHON
|
||||
@unittest.expectedFailure
|
||||
def test_binhex_line_endings(self):
|
||||
# bpo-29566: Ensure the line endings are those for macOS 9
|
||||
with open(self.fname1, 'wb') as f:
|
||||
|
||||
Reference in New Issue
Block a user