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

Side by Side Diff: sdk/lib/_internal/pub_generated/test/global/binstubs/binstub_runs_global_run_if_no_snapshot_test.dart

Issue 599343003: Get binstubs working on Windows. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update comment. 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 import 'package:scheduled_test/scheduled_test.dart'; 1 import 'package:scheduled_test/scheduled_test.dart';
2 import '../../descriptor.dart' as d; 2 import '../../descriptor.dart' as d;
3 import '../../test_pub.dart'; 3 import '../../test_pub.dart';
4 import 'utils.dart';
4 main() { 5 main() {
5 initConfig(); 6 initConfig();
6 integration("the binstubs runs pub global run if there is no snapshot", () { 7 integration("the binstubs runs pub global run if there is no snapshot", () {
7 d.dir("foo", [d.pubspec({ 8 d.dir("foo", [d.pubspec({
8 "name": "foo", 9 "name": "foo",
9 "executables": { 10 "executables": {
10 "foo-script": "script" 11 "foo-script": "script"
11 } 12 }
12 }), 13 }),
13 d.dir("bin", [d.file("script.dart", "main() => print('ok');")])]).crea te(); 14 d.dir("bin", [d.file("script.dart", "main() => print('ok');")])]).crea te();
14 schedulePub( 15 schedulePub(
15 args: ["global", "activate", "--source", "path", "../foo"], 16 args: ["global", "activate", "--source", "path", "../foo"],
16 output: contains("Installed executable foo-script.")); 17 output: contains("Installed executable foo-script."));
17 d.dir( 18 d.dir(
18 cachePath, 19 cachePath,
19 [ 20 [
20 d.dir( 21 d.dir(
21 "bin", 22 "bin",
22 [ 23 [
23 d.matcherFile( 24 d.matcherFile(
24 "foo-script", 25 binStubName("foo-script"),
25 contains("pub global run foo:script"))])]).validate(); 26 contains("pub global run foo:script"))])]).validate();
26 }); 27 });
27 } 28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698