blob: 68aae227e826859bf7e79698010fffc34be58bb2 [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:path/path.dart' as p;
import 'package:pub/src/io.dart';
import 'package:test/test.dart';
import '../../descriptor.dart' as d;
import '../../test_pub.dart';
void main() {
test('errors if the local package does not exist', () async {
await d.dir('foo', [
d.libPubspec('foo', '1.0.0'),
d.dir('bin', [d.file('foo.dart', "main() => print('ok');")]),
]).create();
await runPub(args: ['global', 'activate', '--source', 'path', '../foo']);
deleteEntry(p.join(d.sandbox, 'foo'));
final pub = await pubRun(global: true, args: ['foo']);
expect(
pub.stderr,
emits('The directory `${d.path('foo')}` does not exist.'),
);
await pub.shouldExit(1);
});
}