+++ /dev/null
-# import unittest
-# from pyac import LenFirstSort, _byte
-
-
-# class TestMisc(unittest.TestCase):
-# def test_len_first_sort(self):
-# v = "some_string"
-# self.assertEqual(LenFirstSort(v), (len(v), v))
-
-# def test_
-# byte(self):
-# v = 0x01
-# self.assertEqual(_byte(v), v.to_bytes(1, "big"))
-
-
-# if __name__ == "__main__":
-# unittest.main()
+++ /dev/null
-# import unittest
-
-# from hypothesis.strategies import integers
-# from hypothesis.strategies import binary
-
-# from pyac import dumps
-# from pyac import loads
-# from pyac import Raw
-
-
-# class TestRaw(unittest.TestCase):
-# def test_raw_encode(self):
-# raw = Raw(2, b"data")
-# self.assertEqual(dumps(raw), b"\x02data")
-
-# def test_raw_decode(self):
-# encoded = b"\x02data"
-# decoded, remaining = loads(encoded)
-# self.assertEqual(decoded, Raw(1, data))
-# self.assertEqual(remaining, b"")
-
-
-# if __name__ == "__main__":
-# unittest.main()