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