| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 import 'package:scheduled_test/scheduled_test.dart'; | |
| 6 | |
| 7 import '../../descriptor.dart' as d; | |
| 8 import '../../test_pub.dart'; | |
| 9 | |
| 10 main() { | |
| 11 initConfig(); | |
| 12 integration("removes previous binstubs when reactivating a package", () { | |
| 13 d.dir("foo", [d.pubspec({ | |
| 14 "name": "foo", | |
| 15 "executables": { | |
| 16 "one": null, | |
| 17 "two": null | |
| 18 } | |
| 19 }), | |
| 20 d.dir( | |
| 21 "bin", | |
| 22 [ | |
| 23 d.file("one.dart", "main() => print('ok');"), | |
| 24 d.file("two.dart", "main() => print('ok');")])]).create(); | |
| 25 | |
| 26 schedulePub(args: ["global", "activate", "--source", "path", "../foo"]); | |
| 27 | |
| 28 d.dir("foo", [d.pubspec({ | |
| 29 "name": "foo", | |
| 30 "executables": { | |
| 31 // Remove "one". | |
| 32 "two": null | |
| 33 } | |
| 34 }),]).create(); | |
| 35 | |
| 36 schedulePub(args: ["global", "activate", "--source", "path", "../foo"]); | |
| 37 | |
| 38 d.dir( | |
| 39 cachePath, | |
| 40 [ | |
| 41 d.dir( | |
| 42 "bin", | |
| 43 [ | |
| 44 d.nothing(binStubName("one")), | |
| 45 d.matcherFile(binStubName("two"), contains("two"))])]).valid
ate(); | |
| 46 }); | |
| 47 } | |
| OLD | NEW |