OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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('import_mapper_tests'); | 5 #library('import_mapper_tests'); |
6 | 6 |
7 #import('../../../import_mapper/import_mapper.dart', prefix: 'mapper'); | 7 #import('../../../import_mapper/import_mapper.dart', prefix: 'mapper'); |
8 | 8 |
9 // TODO(rnystrom): Better path to unittest. | 9 // TODO(rnystrom): Better path to unittest. |
10 #import('../../../../client/testing/unittest/unittest_vm.dart'); | 10 #import('../../../../lib/unittest/unittest_vm.dart'); |
11 | 11 |
12 main() { | 12 main() { |
13 group('generateImportMap', () { | 13 group('generateImportMap', () { |
14 test('walks import graph', () { | 14 test('walks import graph', () { |
15 final expected = { 'b.dart': 'b.dart', 'c.dart': 'c.dart' }; | 15 final expected = { 'b.dart': 'b.dart', 'c.dart': 'c.dart' }; |
16 final actual = mapper.generateImportMap( | 16 final actual = mapper.generateImportMap( |
17 'utils/tests/import_mapper/src/c.dart', | 17 'utils/tests/import_mapper/src/c.dart', |
18 (context, name) => name); | 18 (context, name) => name); |
19 expect(actual).equals(expected); | 19 expect(actual).equals(expected); |
20 }); | 20 }); |
21 }); | 21 }); |
22 } | 22 } |
OLD | NEW |