Commit 9666bd499d865b8c58d3f2a36a16a8ba6c86e5af
1 parent
72c01604ff
Tests for antigen-list command. Currently failing.
Showing 1 changed file with 15 additions and 14 deletions Side-by-side Diff
tests/list.t
1 | -Skip test. | |
1 | +Empty initial listing. | |
2 | 2 | |
3 | - $ exit 80 | |
4 | - | |
5 | -Listing recorded bundles. | |
6 | - | |
7 | - $ bundle-list | |
3 | + $ antigen-list | |
8 | 4 | You don't have any bundles. |
9 | 5 | [1] |
10 | - $ bundle lol | |
11 | - $ bundle-list | |
12 | - lol https://github.com/robbyrussell/oh-my-zsh.git plugins/lol | |
13 | - $ bundle vi-mode | |
14 | - $ bundle-list | |
15 | - lol https://github.com/robbyrussell/oh-my-zsh.git plugins/lol | |
16 | - vi-mode https://github.com/robbyrussell/oh-my-zsh.git plugins/vi-mode | |
17 | 6 | |
18 | -TODO: Listing of plugins installed on-spot. | |
7 | +Add a bundle. | |
8 | + | |
9 | + $ antigen-bundle $PLUGIN_DIR | |
10 | + Cloning into '.+?'\.\.\. (re) | |
11 | + done. | |
12 | + $ antigen-list | |
13 | + .*?/test-plugin / plugin - (re) | |
14 | + | |
15 | +Add same bundle and check uniqueness. | |
16 | + | |
17 | + $ antigen-bundle $PLUGIN_DIR | |
18 | + $ antigen-list | |
19 | + .*?/test-plugin / plugin - (re) |