1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

add trivial example to demonstrate installing and uninstalling multiple packages

This commit is contained in:
Ilan Schnell 2020-04-29 00:12:02 -05:00
parent 1f6ff0cc6e
commit e8920daeab

24
tests/yaml/trivial.yml Normal file
View file

@ -0,0 +1,24 @@
base:
available:
- a 0.1.0
- b 0.2.0
- c 0.3.0
cases:
-
request:
- install: ['a', 'b']
- install: c
- uninstall: ['b', 'c']
- uninstall: a
response:
- state:
- a 0.1.0
- b 0.2.0
- state:
- a 0.1.0
- b 0.2.0
- c 0.3.0
- state:
- a 0.1.0
- state: null