Chromium Code Reviews

Side by Side Diff: test/global/activate/missing_git_repo_test.dart

Issue 1215833002: Use the new test runner. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 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 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 import 'package:scheduled_test/scheduled_test.dart'; 5 import 'package:scheduled_test/scheduled_test.dart';
6 6
7 import '../../test_pub.dart'; 7 import '../../test_pub.dart';
8 8
9 main() { 9 main() {
10 initConfig();
11 integration('fails if the Git repo does not exist', () { 10 integration('fails if the Git repo does not exist', () {
12 ensureGit(); 11 ensureGit();
13 12
14 schedulePub(args: ["global", "activate", "-sgit", "../nope.git"], 13 schedulePub(args: ["global", "activate", "-sgit", "../nope.git"],
15 error: contains("repository '../nope.git' does not exist"), 14 error: contains("repository '../nope.git' does not exist"),
16 exitCode: 1); 15 exitCode: 1);
17 }); 16 });
18 } 17 }
OLDNEW

Powered by Google App Engine