Blame view
tests/revert-update.t
1.42 KB
|
d43f31a79
|
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
Load and test plugin.
$ antigen-bundle $PLUGIN_DIR
Cloning into '.+?'\.\.\. (re)
done.
$ hehe
hehe
Save the current HEAD of the plugin.
$ old_version="$(pg rev-parse HEAD)"
Modify the plugin.
$ cat > $PLUGIN_DIR/aliases.zsh <<EOF
> alias hehe='echo hehe, updated'
> EOF
$ pg commit -am 'Updated message'
\[master [a-f0-9]{7}\] Updated message (re)
1 file changed, 1 insertion(+), 1 deletion(-)
Save the new HEAD of the plugin.
$ new_version="$(pg rev-parse HEAD)"
Define a convenience function to get the current version.
$ current-version () {(cd dot-antigen/repos/* && git rev-parse HEAD)}
Confirm we currently have the old version.
$ [[ $(current-version) == $old_version ]]
Run antigen's update.
$ antigen-update
**** Pulling */test-plugin (glob)
From */test-plugin (glob)
???????..??????? master -> origin/master (glob)
Updating ???????..??????? (glob)
Fast-forward
aliases.zsh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Updated from ??????? to ???????. (glob)
??????? Updated message (glob)
aliases.zsh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Confirm we have the new version.
$ [[ $(current-version) == $new_version ]]
Run update again, with no changes in the origin repo.
$ antigen-revert
Reverted to state before running -update on *. (glob)
Confirm we have the old version again.
$ [[ $(current-version) == $old_version ]]
|