예제 #1
0
    def test_copy(self):
        d = CaseInsensitiveDict(A=[1], B=2)
        e = d.copy()
        d['A'].append(2)

        self.assertEquals(e['a'], [1])
예제 #2
0
    def test_copy(self):
        d = CaseInsensitiveDict(A=[1], B=2)
        e = d.copy()
        d['A'].append(2)

        self.assertEquals(e['a'], [1])