| OLD | NEW |
| 1 name: scheduled_test | 1 name: scheduled_test |
| 2 version: 0.11.2+3 | 2 version: 0.11.3 |
| 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: http://www.dartlang.org | 11 homepage: http://www.dartlang.org |
| 12 environment: | 12 environment: |
| 13 sdk: '>=1.3.0 <2.0.0' | 13 sdk: '>=1.3.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.6.0' | 18 shelf: '>=0.4.0 <0.6.0' |
| 19 stack_trace: '>=0.9.1 <2.0.0' | 19 stack_trace: '>=0.9.1 <2.0.0' |
| 20 unittest: '>=0.9.0 <0.12.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.2 <0.11.3' |
| 21 dev_dependencies: | 25 dev_dependencies: |
| 22 metatest: '>=0.1.0 <0.2.0' | 26 metatest: '>=0.1.0 <0.2.0' |
| OLD | NEW |