summaryrefslogtreecommitdiffstats
path: root/tests/test_unset.in
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_unset.in')
-rw-r--r--tests/test_unset.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/test_unset.in b/tests/test_unset.in
new file mode 100644
index 0000000..30f1a25
--- /dev/null
+++ b/tests/test_unset.in
@@ -0,0 +1,10 @@
+#! @builddir@/grub-shell-tester
+
+foo=one
+echo $foo
+
+unset foo
+echo $foo
+echo ${foo}
+
+