diff options
Diffstat (limited to 'lldb/third_party/Python/module/pexpect-4.6/tests/test_pickling.py')
-rw-r--r-- | lldb/third_party/Python/module/pexpect-4.6/tests/test_pickling.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lldb/third_party/Python/module/pexpect-4.6/tests/test_pickling.py b/lldb/third_party/Python/module/pexpect-4.6/tests/test_pickling.py deleted file mode 100644 index 6538677075a..00000000000 --- a/lldb/third_party/Python/module/pexpect-4.6/tests/test_pickling.py +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env python -import pickle -import unittest - -from pexpect import ExceptionPexpect - -class PickleTest(unittest.TestCase): - def test_picking(self): - e = ExceptionPexpect('Oh noes!') - clone = pickle.loads(pickle.dumps(e)) - self.assertEqual(e.value, clone.value) - -if __name__ == '__main__': - unittest.main() |