Blame view
tests/install.t
586 Bytes
|
800268b7c
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
Confirm we have no plugins
$ bundle-list
You don't have any bundles.
[1]
Record a plugin and install it.
$ bundle lol
$ bundle-install
Cloning into '[-_\.a-zA-Z0-9/\\]+'... (re)
Installing lol
Check if the lol plugin is correctly loaded.
$ alias wtf
wtf=dmesg
On-spot installation
$ bundle-install git
Installing git
Check if git plugin is loaded correctly.
$ alias g
g=git
Confirm the listing of plugins
$ bundle-list
lol https://github.com/robbyrussell/oh-my-zsh.git plugins/lol
git https://github.com/robbyrussell/oh-my-zsh.git plugins/git
|