Commit 4098b408dc209c555522ac527cb67d4c94d24e3a
1 parent
2923c490cc
Update tests to a work with the 3-field record.
Showing 1 changed file with 4 additions and 4 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 | 20 | ||
21 | Add another bundle. | 21 | Add another bundle. |
22 | 22 | ||
23 | $ antigen-bundle $PLUGIN_DIR2 | 23 | $ antigen-bundle $PLUGIN_DIR2 |
24 | Cloning into '.+?'\.\.\. (re) | 24 | Cloning into '.+?'\.\.\. (re) |
25 | done. | 25 | done. |
26 | $ antigen-list | 26 | $ antigen-list |
27 | .*?/test-plugin / plugin - (re) | 27 | .*?/test-plugin / plugin (re) |
28 | .*?/test-plugin2 / plugin - (re) | 28 | .*?/test-plugin2 / plugin (re) |
29 | 29 |