diff options
author | sanine <sanine.not@pm.me> | 2022-05-22 12:49:14 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-05-22 12:49:14 -0500 |
commit | 7e61cd41cca9a8915b346a79d658bab4829d8ff1 (patch) | |
tree | ef9185c8738e21f9fe54bf91c2f504b9e80cefa9 /test.lua | |
parent | fc4a406371fdf130d6f0db02d3a2e09112686b9f (diff) |
allow adding children via marigold.h
Diffstat (limited to 'test.lua')
-rwxr-xr-x | test.lua | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -64,3 +64,24 @@ test("marigold.h produces a correct basic tag", function() end assert(#(h1.children) == 0) end) + + +test("marigold.h correctly adds children", function() + local h = marigold.h + local div = h('div', "some stuff", { + h('p', "the first paragraph"), + h('p', "the second paragraph"), + }) + + assert(div.tag == 'div') + assert(div.content == "some stuff") + -- still should have nothing in the attributes table + for k, v in ipairs(div.attributes) do + assert(false, string.format("%s, %s", tostring(k), tostring(v))) + end + assert(#div.children == 2) + assert(div.children[1].tag == 'p') + assert(div.children[1].content == 'the first paragraph') + assert(div.children[2].tag == 'p') + assert(div.children[2].content == 'the second paragraph') +end) |