django-components/tests
Ryan Hiebert f219370be2 Use dictionary to compare registry
The registry is a dictionary, so comparing items() has a couple of
problems:

1. The order of a dictionary is unstable, so it may not turn out as
   expected.
2. items() returns a list in Python 2, but a dict_items in Python 3,
   which makes the comparison fail.
2015-06-13 13:42:27 -05:00
..
templates Add render() and render_dependencies() to Compoent. 2015-06-12 22:15:09 +02:00
__init__.py A simple ComponentRegistry to store components. 2015-06-11 20:42:16 +02:00
test_component.py Add render() and render_dependencies() to Compoent. 2015-06-12 22:15:09 +02:00
test_registry.py Use dictionary to compare registry 2015-06-13 13:42:27 -05:00