| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library css_test; | 5 library css_test; |
| 6 | 6 |
| 7 import 'package:path/path.dart' as path; | 7 import 'package:path/path.dart' as path; |
| 8 import 'package:polymer/src/messages.dart'; | 8 import 'package:polymer/src/messages.dart'; |
| 9 import 'package:polymer/src/utils.dart' as utils; | 9 import 'package:polymer/src/utils.dart' as utils; |
| 10 import 'package:unittest/compact_vm_config.dart'; | 10 import 'package:unittest/compact_vm_config.dart'; |
| (...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 }); | 546 }); |
| 547 | 547 |
| 548 tearDown(() { | 548 tearDown(() { |
| 549 utils.path = new path.Builder(); | 549 utils.path = new path.Builder(); |
| 550 }); | 550 }); |
| 551 | 551 |
| 552 test('test_simple_var', test_simple_var); | 552 test('test_simple_var', test_simple_var); |
| 553 test('test_var', test_var); | 553 test('test_var', test_var); |
| 554 test('test_simple_import', test_simple_import); | 554 test('test_simple_import', test_simple_import); |
| 555 test('test_imports', test_imports); | 555 test('test_imports', test_imports); |
| 556 test('test_component_var', test_component_var); | 556 group('test_component_var', test_component_var); |
| 557 test('test_pseudo_element', test_pseudo_element); | 557 test('test_pseudo_element', test_pseudo_element); |
| 558 }); | 558 }); |
| 559 } | 559 } |
| OLD | NEW |