blob: bed1b73a63d37bba716b562d859ae855c9c82ed8 [file] [log] [blame] [edit]
// 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.
@TestOn('vm')
library;
import 'package:pub/src/path.dart';
import 'package:test/test.dart';
import '../descriptor.dart' as d;
import '../test_pub.dart';
void main() {
test('`pub get` inside the cache fails gracefully', () async {
final server = await servePackages();
server.serve('foo', '1.0.0');
await d.appDir(dependencies: {'foo': 'any'}).create();
await pubGet();
await pubGet(
workingDirectory: p.join(d.sandbox, d.hostedCachePath(), 'foo-1.0.0'),
error: 'Cannot operate on packages inside the cache.',
);
});
}