Commit fe1168299392cb93c785ac736b523addef223f2e
1 parent
bac244cc11
Remove tests for obsolete `-install` command.
Showing 1 changed file with 0 additions and 48 deletions Inline Diff
tests/install.t
1 | Skip test. | File was deleted | |
2 | |||
3 | $ exit 80 | ||
4 | |||
5 | Confirm we have no plugins. | ||
6 | |||
7 | $ bundle-list | ||
8 | You don't have any bundles. | ||
9 | [1] | ||
10 | |||
11 | Record a plugin and install it. | ||
12 | |||
13 | $ bundle lol | ||
14 | $ bundle-install | ||
15 | Cloning into '[-_\.a-zA-Z0-9/\\]+'... (re) | ||
16 | Installing lol | ||
17 | |||
18 | Check if the lol plugin is correctly loaded. | ||
19 | |||
20 | $ alias wtf | ||
21 | wtf=dmesg | ||
22 | |||
23 | On-spot installation. | ||
24 | |||
25 | $ bundle-install git | ||
26 | Installing git | ||
27 | |||
28 | Check if git plugin is loaded correctly. | ||
29 | |||
30 | $ alias g | ||
31 | g=git | ||
32 | |||
33 | Confirm the listing of plugins. | ||
34 | |||
35 | $ bundle-list | ||
36 | lol https://github.com/robbyrussell/oh-my-zsh.git plugins/lol | ||
37 | git https://github.com/robbyrussell/oh-my-zsh.git plugins/git | ||
38 | |||
39 | Update plugins (test both alternate syntaxes for do this). | ||
40 | |||
41 | $ bundle-install! | ||
42 | Already up-to-date. | ||
43 | Installing lol | ||
44 | Installing git | ||
45 | $ bundle-install --update | ||
46 | Already up-to-date. | ||
47 | Installing lol | ||
48 | Installing git | ||
49 | 1 | Skip test. |