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

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

Issue 14680005: Add offline support to pub install and update. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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) 2012, the Dart project authors. Please see the AUTHORS file 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 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_tests; 5 library pub_tests;
6 6
7 import 'dart:io'; 7 import 'dart:io';
8 8
9 import 'package:scheduled_test/scheduled_test.dart'; 9 import 'package:scheduled_test/scheduled_test.dart';
10 10
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 exitCode: 64); 93 exitCode: 64);
94 }); 94 });
95 95
96 group('help', () { 96 group('help', () {
97 integration('shows help for a command', () { 97 integration('shows help for a command', () {
98 schedulePub(args: ['help', 'install'], 98 schedulePub(args: ['help', 'install'],
99 output: ''' 99 output: '''
100 Install the current package's dependencies. 100 Install the current package's dependencies.
101 101
102 Usage: pub install 102 Usage: pub install
103 --[no-]offline Use cached packages instead of accessing the netwo rk
103 '''); 104 ''');
104 }); 105 });
105 106
106 integration('shows help for a command', () { 107 integration('shows help for a command', () {
107 schedulePub(args: ['help', 'publish'], 108 schedulePub(args: ['help', 'publish'],
108 output: ''' 109 output: '''
109 Publish the current package to pub.dartlang.org. 110 Publish the current package to pub.dartlang.org.
110 111
111 Usage: pub publish [options] 112 Usage: pub publish [options]
112 -n, --dry-run Validate but do not publish the package 113 -n, --dry-run Validate but do not publish the package
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 // The "version" file generated on developer builds is a little funky and 145 // The "version" file generated on developer builds is a little funky and
145 // we need to make sure we don't choke on it. 146 // we need to make sure we don't choke on it.
146 d.dir(sdkPath, [ 147 d.dir(sdkPath, [
147 d.file('version', '0.1.2.0_r16279_bobross'), 148 d.file('version', '0.1.2.0_r16279_bobross'),
148 ]).create(); 149 ]).create();
149 150
150 schedulePub(args: ['version'], output: "Pub 0.1.2+0.r16279.bobross\n"); 151 schedulePub(args: ['version'], output: "Pub 0.1.2+0.r16279.bobross\n");
151 }); 152 });
152 }); 153 });
153 } 154 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698