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