Merge pull request #865 from Blizzard/remove-prints
Remove "test.print" calls.
This commit is contained in:
commit
cb1cbe5c4f
@ -9,11 +9,6 @@
|
||||
|
||||
|
||||
function suite.setup()
|
||||
test.print('-------')
|
||||
test.print(package.path)
|
||||
test.print('-------')
|
||||
test.print(package.cpath)
|
||||
test.print('-------')
|
||||
require("example")
|
||||
end
|
||||
|
||||
|
@ -175,21 +175,26 @@
|
||||
|
||||
function suite.remove_onExactValueMatch()
|
||||
local f = field.get("flags")
|
||||
configset.store(cset, f, { "Symbols", "WinMain", "MFC" })
|
||||
|
||||
local r, err = configset.store(cset, f, { "Symbols", "WinMain", "MFC" })
|
||||
test.isnil(err)
|
||||
|
||||
configset.remove(cset, f, { "WinMain" })
|
||||
|
||||
local result = configset.fetch(cset, f, {})
|
||||
test.print(table.tostring(result))
|
||||
local result = configset.fetch(cset, f)
|
||||
test.isequal({ "Symbols", "MFC" }, result)
|
||||
end
|
||||
|
||||
|
||||
function suite.remove_onMultipleValues()
|
||||
local f = field.get("flags")
|
||||
configset.store(cset, f, { "Symbols", "Maps", "WinMain", "MFC" })
|
||||
|
||||
local r, err = configset.store(cset, f, { "Symbols", "Maps", "WinMain", "MFC" })
|
||||
test.isnil(err)
|
||||
|
||||
configset.remove(cset, f, { "Maps", "MFC" })
|
||||
|
||||
local result = configset.fetch(cset, f, {})
|
||||
test.print(table.tostring(result))
|
||||
local result = configset.fetch(cset, f)
|
||||
test.isequal({ "Symbols", "WinMain" }, result)
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user