diff options
Diffstat (limited to 'test/lua')
-rw-r--r-- | test/lua/attr-test.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/lua/attr-test.lua b/test/lua/attr-test.lua new file mode 100644 index 000000000..68dc0012d --- /dev/null +++ b/test/lua/attr-test.lua @@ -0,0 +1,6 @@ +function Div (div) + div.attributes.five = ("%d"):format(div.attributes.two + div.attributes.three) + div.attributes.two = nil + div.attributes.one = "eins" + return div +end |