| OLD | NEW |
| (Empty) |
| 1 name: scheduled_test | |
| 2 version: 0.11.6 | |
| 3 author: Dart Team <misc@dartlang.org> | |
| 4 description: > | |
| 5 A package for writing readable tests of asynchronous behavior. | |
| 6 | |
| 7 This package works by building up a queue of asynchronous tasks called a | |
| 8 "schedule", then executing those tasks in order. This allows the tests to | |
| 9 read like synchronous, linear code, despite executing asynchronously. | |
| 10 | |
| 11 homepage: http://www.dartlang.org | |
| 12 environment: | |
| 13 sdk: '>=1.3.0 <2.0.0' | |
| 14 dependencies: | |
| 15 http_multi_server: '>=1.0.0 <2.0.0' | |
| 16 http: '>=0.9.0 <0.12.0' | |
| 17 path: '>=0.9.0 <2.0.0' | |
| 18 shelf: '>=0.4.0 <0.6.0' | |
| 19 stack_trace: '>=0.9.1 <2.0.0' | |
| 20 | |
| 21 # Because scheduled_test exports unittest, it needs to keep its version | |
| 22 # constraint tight to ensure that a constraint on scheduled_test properly | |
| 23 # constraints all features it provides. | |
| 24 unittest: '>=0.11.4 <0.11.5' | |
| 25 dev_dependencies: | |
| 26 metatest: '>=0.1.0 <0.2.0' | |
| OLD | NEW |