1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
local function create_test_file(str)
end
describe("brokengine",function()
describe("gui library",function()
for k,v in pairs({
"button",
"checkbox",
"colorselector",
"combobox",
"contextmenu",
"editbox",
"fileopen",
"image",
"imagelist",
"inoutfader",
"listbox",
"meshviewer",
"scrollbar",
"spinbox",
"statictext",
"tab",
"tabcontrol",
"table",
"toolbar",
"treeview",
"treeviewnode",
"window"
}) do
it(string.format("should be able to create a %s",v),function()
end)
end
end)
end)
|