Implement initial Python bindings for Open vSwitch database.
[sliver-openvswitch.git] / ovsdb / simplejson / tests / test_default.py
1 from unittest import TestCase
2
3 import simplejson as json
4
5 class TestDefault(TestCase):
6     def test_default(self):
7         self.assertEquals(
8             json.dumps(type, default=repr),
9             json.dumps(repr(type)))