blob: 359e2598edef6fb1c2fb2599c5ba78f33e3d82ab [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 '../../test_pub.dart';
void main() {
test('activates a different version after deactivating', () async {
await servePackages()
..serve('foo', '1.0.0')
..serve('foo', '2.0.0');
// Activate an old version.
await runPub(args: ['global', 'activate', 'foo', '1.0.0']);
await runPub(
args: ['global', 'deactivate', 'foo'],
output: 'Deactivated package foo 1.0.0.',
);
// Activating again should forget the old version.
await runPub(
args: ['global', 'activate', 'foo'],
silent: contains('Downloading foo 2.0.0...'),
output: '''
Resolving dependencies...
Downloading packages...
+ foo 2.0.0
Activated foo 2.0.0.''',
);
});
}