| OLD | NEW |
| (Empty) |
| 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 'package:scheduled_test/scheduled_test.dart'; | |
| 6 | |
| 7 import '../../test_pub.dart'; | |
| 8 | |
| 9 main() { | |
| 10 initConfig(); | |
| 11 integration('fails if the Git repo does not exist', () { | |
| 12 ensureGit(); | |
| 13 | |
| 14 schedulePub( | |
| 15 args: ["global", "activate", "-sgit", "../nope.git"], | |
| 16 error: contains("repository '../nope.git' does not exist"), | |
| 17 exitCode: 1); | |
| 18 }); | |
| 19 } | |
| OLD | NEW |