blob: 6c25b7cccfc9d562490b930fb56c34fca4420fd8 [file] [log] [blame] [edit]
// Copyright (c) 2012, 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:test/test.dart';
import '../../descriptor.dart' as d;
import '../../test_pub.dart';
void main() {
test('requires the dependency to have a pubspec', () async {
ensureGit();
await d.git('foo.git', [d.libDir('foo')]).create();
await d
.appDir(
dependencies: {
'foo': {'git': '../foo.git'},
},
)
.create();
await pubGet(
error: RegExp(
r'Could not find a file named "pubspec\.yaml" '
r'in [^\n]\.',
),
);
});
}