blob: ebe33e25ade5a3eb63527a78b649b7ac4ec3eac1 [file] [log] [blame]
// 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.
import 'package:test/test.dart';
import '../descriptor.dart' as d;
import '../test_pub.dart';
void main() {
test('re-gets a package if its source has changed', () async {
final server = await servePackages();
server.serve('foo', '1.2.3');
await d.dir('foo', [
d.libDir('foo', 'foo 0.0.1'),
d.libPubspec('foo', '0.0.1'),
]).create();
await d
.appDir(
dependencies: {
'foo': {'path': '../foo'},
},
)
.create();
await pubGet();
await d.appPackageConfigFile([
d.packageConfigEntry(name: 'foo', path: '../foo'),
]).validate();
await d.appDir(dependencies: {'foo': 'any'}).create();
await pubGet();
await d.appPackageConfigFile([
d.packageConfigEntry(name: 'foo', version: '1.2.3'),
]).validate();
});
}