Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(485)

Side by Side Diff: sdk/lib/_internal/pub/test/preprocess_test.dart

Issue 602253002: Use pub_semver package in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 pub.test.preprocess_test; 5 library pub.test.preprocess_test;
6 6
7 import 'package:pub_semver/pub_semver.dart';
7 import 'package:unittest/unittest.dart'; 8 import 'package:unittest/unittest.dart';
8 9
9 import '../lib/src/preprocess.dart'; 10 import '../lib/src/preprocess.dart';
10 import '../lib/src/version.dart';
11 import 'test_pub.dart'; 11 import 'test_pub.dart';
12 12
13 main() { 13 main() {
14 initConfig(); 14 initConfig();
15 15
16 test("does nothing on a file without preprocessor directives", () { 16 test("does nothing on a file without preprocessor directives", () {
17 var text = ''' 17 var text = '''
18 some text 18 some text
19 // normal comment 19 // normal comment
20 // # 20 // #
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 //# else barback <0.5.0 294 //# else barback <0.5.0
295 //# end 295 //# end
296 '''), throwsFormatException); 296 '''), throwsFormatException);
297 }); 297 });
298 }); 298 });
299 }); 299 });
300 } 300 }
301 301
302 String _preprocess(String input) => 302 String _preprocess(String input) =>
303 preprocess(input, {'barback': new Version.parse("1.2.3")}, 'source/url'); 303 preprocess(input, {'barback': new Version.parse("1.2.3")}, 'source/url');
OLDNEW
« no previous file with comments | « sdk/lib/_internal/pub/test/lock_file_test.dart ('k') | sdk/lib/_internal/pub/test/pubspec_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698