blob: 5a6f6e34d7c9c16ba6f1c9ba806988ffad1ab6db [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...
+ foo 2.0.0
Activated foo 2.0.0.''');
});
}