| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 3 # for details. All rights reserved. Use of this source code is governed by a | 3 # for details. All rights reserved. Use of this source code is governed by a |
| 4 # BSD-style license that can be found in the LICENSE file. | 4 # BSD-style license that can be found in the LICENSE file. |
| 5 | 5 |
| 6 import idlnode | 6 import idlnode |
| 7 import idlparser | 7 import idlparser |
| 8 import logging.config | 8 import logging.config |
| 9 import sys | 9 import sys |
| 10 import unittest | 10 import unittest |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 def test_inheritance(self): | 138 def test_inheritance(self): |
| 139 self._run_test( | 139 self._run_test( |
| 140 None, | 140 None, |
| 141 'interface Shape {}; interface Rectangle : Shape {}; interface Square : Re
ctangle, Shape {};', | 141 'interface Shape {}; interface Rectangle : Shape {}; interface Square : Re
ctangle, Shape {};', |
| 142 {'interfaces': [{'javascript_binding_name': 'Shape', 'doc_js_name': 'Shape
', 'id': 'Shape'}, {'javascript_binding_name': 'Rectangle', 'doc_js_name': 'Rect
angle', 'parents': [{'type': {'id': 'Shape'}}], 'id': 'Rectangle'}, {'javascript
_binding_name': 'Square', 'doc_js_name': 'Square', 'parents': [{'type': {'id': '
Rectangle'}}, {'type': {'id': 'Shape'}}], 'id': 'Square'}]}) | 142 {'interfaces': [{'javascript_binding_name': 'Shape', 'doc_js_name': 'Shape
', 'id': 'Shape'}, {'javascript_binding_name': 'Rectangle', 'doc_js_name': 'Rect
angle', 'parents': [{'type': {'id': 'Shape'}}], 'id': 'Rectangle'}, {'javascript
_binding_name': 'Square', 'doc_js_name': 'Square', 'parents': [{'type': {'id': '
Rectangle'}}, {'type': {'id': 'Shape'}}], 'id': 'Square'}]}) |
| 143 | 143 |
| 144 if __name__ == "__main__": | 144 if __name__ == "__main__": |
| 145 logging.config.fileConfig("logging.conf") | 145 logging.config.fileConfig("logging.conf") |
| 146 if __name__ == '__main__': | 146 if __name__ == '__main__': |
| 147 unittest.main() | 147 unittest.main() |
| OLD | NEW |