summaryrefslogtreecommitdiff
path: root/server/test/implementation/set.lua
diff options
context:
space:
mode:
Diffstat (limited to 'server/test/implementation/set.lua')
-rw-r--r--server/test/implementation/set.lua31
1 files changed, 31 insertions, 0 deletions
diff --git a/server/test/implementation/set.lua b/server/test/implementation/set.lua
new file mode 100644
index 00000000..5c4a1a2e
--- /dev/null
+++ b/server/test/implementation/set.lua
@@ -0,0 +1,31 @@
+TEST [[
+<!x!> = 1
+<?x?> = 1
+]]
+
+TEST [[
+global = 1
+do
+ <!global!> = 2
+end
+<?global?> = 3
+]]
+
+TEST [[
+<!x!> = 1
+do
+ local x = 1
+end
+<?x?> = 1
+]]
+
+TEST [[
+x = 1
+do
+ local x = 1
+ do
+ <!x!> = 2
+ end
+ <?x?> = 1
+end
+]]