Module:Protect/testcases
Appearance
![]() | This is the test cases page for the module Module:Protect. Results of the test cases. |
local p = require('Module:UnitTests')
local protect = require('Module:Protect')
function p:test_protect()
self:equals(
'Success',
protect(mw.clone)('Foo'),
'Foo'
)
self:equals(
'Default error',
protect(error)('foo'),
self.frame:preprocess('{{Error|Error: foo}}')
)
self:equals(
'No caught message',
protect(error)(),
self.frame:preprocess('{{Error|Error: (no message)}}')
)
self:equals(
'Custom errFormat',
protect(error, 'Failure (%s)')('foo'),
self.frame:preprocess('{{Error|Failure (foo)}}')
)
self:equals(
'Raw errFormat',
protect(error, {raw = true})('foo'),
'Error: foo'
)
self:equals(
'Custom raw errFormat',
protect(error, 'Failure (%s)', {raw = true})('foo'),
'Failure (foo)'
)
self:equals(
'Remove location',
protect(error)('foo', 3),
self.frame:preprocess('{{Error|Error: foo}}')
)
self:equals(
'Keep location',
protect(error, {removeLocation = false})('foo', 3),
self.frame:preprocess('{{Error|Error: Module:Protect/testcases:49: foo}}')
)
end
return p