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

Side by Side Diff: sdk/lib/_internal/pub_generated/test/global/activate/git_package_test.dart

Issue 557563002: Store the async-await compiled pub code directly in the repo. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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
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 '../../descriptor.dart' as d; 1 import '../../descriptor.dart' as d;
6 import '../../test_pub.dart'; 2 import '../../test_pub.dart';
7
8 main() { 3 main() {
9 initConfig(); 4 initConfig();
10 integration('activates a package from a Git repo', () { 5 integration('activates a package from a Git repo', () {
11 ensureGit(); 6 ensureGit();
12 7 d.git(
13 d.git('foo.git', [ 8 'foo.git',
14 d.libPubspec("foo", "1.0.0"), 9 [
15 d.dir("bin", [ 10 d.libPubspec("foo", "1.0.0"),
16 d.file("foo.dart", "main() => print('ok');") 11 d.dir("bin", [d.file("foo.dart", "main() => print('ok');")])]).creat e();
17 ]) 12 schedulePub(args: ["global", "activate", "-sgit", "../foo.git"], output: '''
18 ]).create();
19
20 schedulePub(args: ["global", "activate", "-sgit", "../foo.git"],
21 output: '''
22 Resolving dependencies... 13 Resolving dependencies...
23 + foo 1.0.0 from git ../foo.git 14 + foo 1.0.0 from git ../foo.git
24 Precompiling executables... 15 Precompiling executables...
25 Loading source assets... 16 Loading source assets...
26 Precompiled foo:foo. 17 Precompiled foo:foo.
27 Activated foo 1.0.0 from Git repository "../foo.git".'''); 18 Activated foo 1.0.0 from Git repository "../foo.git".''');
28 }); 19 });
29 } 20 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698