| 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_stream.dart'; | 5 import 'package:scheduled_test/scheduled_stream.dart'; |
| 6 import 'package:scheduled_test/scheduled_test.dart'; | 6 import 'package:scheduled_test/scheduled_test.dart'; |
| 7 | 7 |
| 8 import '../../descriptor.dart' as d; | 8 import '../../descriptor.dart' as d; |
| 9 import '../../test_pub.dart'; | 9 import '../../test_pub.dart'; |
| 10 | 10 |
| 11 main() { | 11 main() { |
| 12 initConfig(); | |
| 13 integration("does not overwrite an existing binstub", () { | 12 integration("does not overwrite an existing binstub", () { |
| 14 d.dir("foo", [ | 13 d.dir("foo", [ |
| 15 d.pubspec({ | 14 d.pubspec({ |
| 16 "name": "foo", | 15 "name": "foo", |
| 17 "executables": { | 16 "executables": { |
| 18 "foo": "foo", | 17 "foo": "foo", |
| 19 "collide1": "foo", | 18 "collide1": "foo", |
| 20 "collide2": "foo" | 19 "collide2": "foo" |
| 21 } | 20 } |
| 22 }), | 21 }), |
| (...skipping 29 matching lines...) Expand all Loading... |
| 52 d.dir(cachePath, [ | 51 d.dir(cachePath, [ |
| 53 d.dir("bin", [ | 52 d.dir("bin", [ |
| 54 d.matcherFile(binStubName("foo"), contains("foo:foo")), | 53 d.matcherFile(binStubName("foo"), contains("foo:foo")), |
| 55 d.matcherFile(binStubName("bar"), contains("bar:bar")), | 54 d.matcherFile(binStubName("bar"), contains("bar:bar")), |
| 56 d.matcherFile(binStubName("collide1"), contains("foo:foo")), | 55 d.matcherFile(binStubName("collide1"), contains("foo:foo")), |
| 57 d.matcherFile(binStubName("collide2"), contains("foo:foo")) | 56 d.matcherFile(binStubName("collide2"), contains("foo:foo")) |
| 58 ]) | 57 ]) |
| 59 ]).validate(); | 58 ]).validate(); |
| 60 }); | 59 }); |
| 61 } | 60 } |
| OLD | NEW |