OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 #library('import_mapper_tests'); |
| 6 |
| 7 #import('../../../import_mapper/import_mapper.dart', prefix: 'mapper'); |
| 8 |
| 9 // TODO(rnystrom): Better path to unittest. |
| 10 #import('../../../../client/testing/unittest/unittest_vm.dart'); |
| 11 |
| 12 main() { |
| 13 group('generateImportMap', () { |
| 14 test('walks import graph', () { |
| 15 final expected = { 'b.dart': 'b.dart', 'c.dart': 'c.dart' }; |
| 16 final actual = mapper.generateImportMap( |
| 17 'utils/tests/import_mapper/src/c.dart', |
| 18 (context, name) => name); |
| 19 expect(actual).equals(expected); |
| 20 }); |
| 21 }); |
| 22 } |
OLD | NEW |