This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vitaly
Recipients ezio.melotti, georg.brandl, gregory.p.smith, michael.foord, r.david.murray, rbcollins, rhettinger, serhiy.storchaka, vitaly
Date 2016-05-23.21:36:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1464039375.61.0.406505027082.issue27071@psf.upfronthosting.co.za>
In-reply-to
Content
Why do you say that "we aren't dealing with python sets"? Try:

import unittest as u
class Test(u.TestCase):
    def test_equal_count_of_same_elements(self):
        self.assertItemsEqual(set([1,2,3]), set([1,2,3]))


    def test_equal_count_of_different_elements(self):
        self.assertItemsEqual(set([1,2,3]), set([1,2,4]))


    def test_different_count(self):
        self.assertItemsEqual(set([1,2,3]), set([1,2,3,4]))
u.main()
History
Date User Action Args
2016-05-23 21:36:15vitalysetrecipients: + vitaly, georg.brandl, rhettinger, gregory.p.smith, rbcollins, ezio.melotti, r.david.murray, michael.foord, serhiy.storchaka
2016-05-23 21:36:15vitalysetmessageid: <1464039375.61.0.406505027082.issue27071@psf.upfronthosting.co.za>
2016-05-23 21:36:15vitalylinkissue27071 messages
2016-05-23 21:36:15vitalycreate