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

Side by Side Diff: sdk/lib/_internal/pub_generated/test/global/activate/reactivating_git_upgrades_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('ignores previously activated git commit', 5 integration('ignores previously activated git commit', () {
11 () {
12 ensureGit(); 6 ensureGit();
13 7 d.git('foo.git', [d.libPubspec("foo", "1.0.0")]).create();
14 d.git('foo.git', [ 8 schedulePub(args: ["global", "activate", "-sgit", "../foo.git"], output: '''
15 d.libPubspec("foo", "1.0.0")
16 ]).create();
17
18 schedulePub(args: ["global", "activate", "-sgit", "../foo.git"],
19 output: '''
20 Resolving dependencies... 9 Resolving dependencies...
21 + foo 1.0.0 from git ../foo.git 10 + foo 1.0.0 from git ../foo.git
22 Precompiling executables... 11 Precompiling executables...
23 Loading source assets... 12 Loading source assets...
24 Activated foo 1.0.0 from Git repository "../foo.git".'''); 13 Activated foo 1.0.0 from Git repository "../foo.git".''');
25 14 d.git('foo.git', [d.libPubspec("foo", "1.0.1")]).commit();
26 d.git('foo.git', [ 15 schedulePub(args: ["global", "activate", "-sgit", "../foo.git"], output: '''
27 d.libPubspec("foo", "1.0.1")
28 ]).commit();
29
30 // Activating it again pulls down the latest commit.
31 schedulePub(args: ["global", "activate", "-sgit", "../foo.git"],
32 output: '''
33 Package foo is currently active from Git repository "../foo.git". 16 Package foo is currently active from Git repository "../foo.git".
34 Resolving dependencies... 17 Resolving dependencies...
35 + foo 1.0.1 from git ../foo.git 18 + foo 1.0.1 from git ../foo.git
36 Precompiling executables... 19 Precompiling executables...
37 Loading source assets... 20 Loading source assets...
38 Activated foo 1.0.1 from Git repository "../foo.git".'''); 21 Activated foo 1.0.1 from Git repository "../foo.git".''');
39 }); 22 });
40 } 23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698