Populate the cached config options with the defaults
[stgit] / t / t2200-rebase.sh
index 52462dd..adbf242 100755 (executable)
@@ -27,7 +27,20 @@ test_expect_success \
        'Rebase to previous commit' \
        '
        stg rebase master~1 &&
-       test `stg id base@stack` = `git rev-parse master~1`
+       test `stg id stack:{base}` = `git rev-parse master~1` &&
+       test `stg series --applied -c` = 1
+       '
+
+test_expect_success \
+       'Attempt rebase to non-existing commit' \
+       '
+       command_error stg rebase not-a-ref
+       '
+
+test_expect_success \
+       'Check patches were re-applied' \
+       '
+       test $(stg series --applied -c) = 1
        '
 
 test_done