File: test_external.py

package info (click to toggle)
wxglade 1%3A1.1.1%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,592 kB
  • sloc: python: 30,644; javascript: 740; makefile: 169; cpp: 99; perl: 90; lisp: 62; xml: 61; sh: 3
file content (30 lines) | stat: -rw-r--r-- 633 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""\
Test external code

@copyright: 2014-2016 Carsten Grohmann

@license: MIT (see LICENSE.txt) - THIS PROGRAM COMES WITH NO WARRANTY
"""

import unittest
from copy import deepcopy


class TestExternal(unittest.TestCase):
    """\
    Test different external code
    """

    def test_OrderedDict_deepcopy(self):
        """\
        Test deep copying OrderedDict
        """
        from collections import OrderedDict
        a = OrderedDict([('A', 'A'), ('B', 'B'), (1, 2)])
        a[2] = {'a': 1}
        b = deepcopy(a)
        self.assertEqual(a, b)
        self.assertFalse(a is b)
        self.assertFalse(a[2] is b[2])