blob: 7dec94b8344de44a9532626bec774a22e8b2ef1a [file] [log] [blame]
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// 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:test/test.dart';
import 'package:pub/src/exit_codes.dart' as exit_codes;
import '../../test_pub.dart';
main() {
test('fails if the package cound not be found on the source', () async {
await serveNoPackages();
await runPub(
args: ["cache", "add", "foo"],
error:
new RegExp(r"Package doesn't exist \(could not find package foo at "
r"http://.*\)\."),
exitCode: exit_codes.UNAVAILABLE);
});
}