summaryrefslogtreecommitdiffstats
path: root/src/tests/keywords/return-group
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/keywords/return-group')
-rw-r--r--src/tests/keywords/return-group22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/tests/keywords/return-group b/src/tests/keywords/return-group
new file mode 100644
index 0000000..92978e4
--- /dev/null
+++ b/src/tests/keywords/return-group
@@ -0,0 +1,22 @@
+# PRE: return
+#
+update {
+ control:Auth-Type = 'Accept'
+}
+
+group {
+ # Section should exit after this statement
+ ok {
+ ok = return
+ }
+
+ # This entry should never be reached
+ update {
+ reply:Reply-Message := 'fail'
+ }
+}
+
+# We should continue processing after the previous group.
+update {
+ reply:Reply-Message += 'pass'
+}