Chromium Code Reviews

Unified Diff: sdk/lib/_internal/pub/test/global/activate/activate_git_after_hosted_test.dart

Issue 844263004: Properly update git binary snapshots during pub upgrade. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix tests Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: sdk/lib/_internal/pub/test/global/activate/activate_git_after_hosted_test.dart
diff --git a/sdk/lib/_internal/pub/test/global/activate/activate_git_after_hosted_test.dart b/sdk/lib/_internal/pub/test/global/activate/activate_git_after_hosted_test.dart
index d50561e3da8d493d1b6bd1cd1f9e50684adf2e03..e524cbf0d65837881b80c5d761931f18cb5242fa 100644
--- a/sdk/lib/_internal/pub/test/global/activate/activate_git_after_hosted_test.dart
+++ b/sdk/lib/_internal/pub/test/global/activate/activate_git_after_hosted_test.dart
@@ -2,6 +2,8 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
+import 'package:scheduled_test/scheduled_test.dart';
+
import '../../descriptor.dart' as d;
import '../../test_pub.dart';
@@ -28,14 +30,17 @@ main() {
schedulePub(args: ["global", "activate", "foo"]);
schedulePub(args: ["global", "activate", "-sgit", "../foo.git"],
- output: """
- Package foo is currently active at version 1.0.0.
- Resolving dependencies...
- + foo 1.0.0 from git ../foo.git
- Precompiling executables...
- Loading source assets...
- Precompiled foo:foo.
- Activated foo 1.0.0 from Git repository "../foo.git".""");
+ output: allOf(
+ startsWith(
+ 'Package foo is currently active at version 1.0.0.\n'
+ 'Resolving dependencies...\n'
+ '+ foo 1.0.0 from git ../foo.git at '),
+ // Specific revision number goes here.
+ endsWith(
+ 'Precompiling executables...\n'
+ 'Loading source assets...\n'
+ 'Precompiled foo:foo.\n'
+ 'Activated foo 1.0.0 from Git repository "../foo.git".')));
// Should now run the git one.
var pub = pubRun(global: true, args: ["foo"]);

Powered by Google App Engine