Commit 48e180c22b501289aef1cd3ac6c2553e06e95d4b
1 parent
80d6fbe602
Test list command with more than one bundle.
Showing 1 changed file with 9 additions and 0 deletions Inline Diff
tests/list.t
1 | Empty initial listing. | 1 | Empty initial listing. |
2 | 2 | ||
3 | $ antigen-list | 3 | $ antigen-list |
4 | You don't have any bundles. | 4 | You don't have any bundles. |
5 | [1] | 5 | [1] |
6 | 6 | ||
7 | Add a bundle. | 7 | Add a bundle. |
8 | 8 | ||
9 | $ antigen-bundle $PLUGIN_DIR | 9 | $ antigen-bundle $PLUGIN_DIR |
10 | Cloning into '.+?'\.\.\. (re) | 10 | Cloning into '.+?'\.\.\. (re) |
11 | done. | 11 | done. |
12 | $ antigen-list | 12 | $ antigen-list |
13 | .*?/test-plugin / plugin - (re) | 13 | .*?/test-plugin / plugin - (re) |
14 | 14 | ||
15 | Add same bundle and check uniqueness. | 15 | Add same bundle and check uniqueness. |
16 | 16 | ||
17 | $ antigen-bundle $PLUGIN_DIR | 17 | $ antigen-bundle $PLUGIN_DIR |
18 | $ antigen-list | 18 | $ antigen-list |
19 | .*?/test-plugin / plugin - (re) | 19 | .*?/test-plugin / plugin - (re) |
20 | |||
21 | Add another bundle. | ||
22 | |||
23 | $ antigen-bundle $PLUGIN_DIR2 | ||
24 | Cloning into '.+?'\.\.\. (re) | ||
25 | done. | ||
26 | $ antigen-list | ||
27 | .*?/test-plugin / plugin - (re) | ||
28 | .*?/test-plugin2 / plugin - (re) | ||
20 | 29 |