OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2015, 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 import 'dart:io'; | |
6 import 'dart:mirrors'; | |
7 import 'package:lookup_map/lookup_map.dart'; // accessed via mirrors; | |
8 import 'package:test/test.dart'; | |
9 import 'package:yaml/yaml.dart'; | |
10 | |
11 /// This dartdoc helps remove a warning for the unused import on [LookupMap]. | |
12 main() { | |
13 test('validate version number matches', () { | |
14 var pubspecPath = Platform.script.resolve('../pubspec.yaml').path; | |
Bill Hesse
2015/09/11 14:10:29
This is failing on windows because it uses .path i
Bill Hesse
2015/09/11 14:17:55
There is also new File.fromUri().
Siggi Cherem (dart-lang)
2015/09/11 16:29:16
Oh - sorry about this, I didn't notice this failur
| |
15 var yaml = loadYaml(new File(pubspecPath).readAsStringSync()); | |
16 var version1 = yaml['version']; | |
17 var library = currentMirrorSystem().findLibrary(#lookup_map); | |
18 var version2 = library.getField(new Symbol('_version')).reflectee; | |
19 expect(version1, version2); | |
20 }); | |
21 } | |
OLD | NEW |