Blame view

tests/list.t 475 Bytes
ddbb98497   mj   Squashed 'repos/z...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  Empty initial listing.
  
    $ antigen-list
    You don't have any bundles.
    [1]
  
  Add a bundle.
  
    $ antigen-bundle $PLUGIN_DIR &> /dev/null
    $ antigen-list
    */test-plugin / plugin true (glob)
  
  Add same bundle and check uniqueness.
  
    $ antigen-bundle $PLUGIN_DIR
    $ antigen-list
    */test-plugin / plugin true (glob)
  
  Add another bundle.
  
    $ antigen-bundle $PLUGIN_DIR2 &> /dev/null
    $ antigen-list
    */test-plugin / plugin true (glob)
    */test-plugin2 / plugin true (glob)