Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-01-22 | More test ports from mocker to mock. | Barry Warsaw | |
2014-11-24 | Use assertNotEqual which exists on python2.6 | Joshua Harlow | |
Instead of using assertGreater which is new on python2.7 just use assertNotEqual which does exist on python2.6 to perform the same/similar operation. This makes the unittest not break on python2.6 | |||
2014-10-18 | Pretty up the debug module | Joshua Harlow | |
Previously the usage of the yaml_dumps module was causing any python unicode key and value to show up as: 'item': !!python/unicode "some string" This was not very pretty... Fix this by using safe_dumps (which is also a good thing to use and allow_unicode=True). Also create a tiny helper function in the cc_debug module that does not include the yaml start and end footers (since this module has its own footers and headers). Also includes a basic sanity test for this module. |