Open main menu
Home
Random
Donate
Recent changes
Special pages
Community portal
Preferences
About Stockhub
Disclaimers
Search
User menu
Talk
Contributions
Create account
Log in
Editing
Module:Highest archive number/testcases
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
-- Unit tests for [[Module:Highest archive number]]. Click on the talk page to -- run the tests. local han = require('Module:Highest archive number/sandbox') local ScribuntoUnit = require('Module:ScribuntoUnit') local suite = ScribuntoUnit:new() -- Monkey patch mw.title.new local existingPages = {} local oldTitleNew = mw.title.new mw.title.new = function(page) local title = oldTitleNew(page) rawset(title, "exists", existingPages[page] ~= nil) return title end -- Test data local NO_ARCHIVES = {} local ARCHIVES_1_TO_5 = { ["Talk:Foo/Archive 1"] = true, ["Talk:Foo/Archive 2"] = true, ["Talk:Foo/Archive 3"] = true, ["Talk:Foo/Archive 4"] = true, ["Talk:Foo/Archive 5"] = true, } local ARCHIVES_3_TO_5 = { ["Talk:Foo/Archive 3"] = true, ["Talk:Foo/Archive 4"] = true, ["Talk:Foo/Archive 5"] = true, } -- Tests function suite:testNoArchives() existingPages = NO_ARCHIVES self:assertEquals(han._main("Talk:Foo/Archive "), nil) end function suite:testArchivesStartingFromOne() existingPages = ARCHIVES_1_TO_5 self:assertEquals(han._main("Talk:Foo/Archive "), 5) end function suite:testArchivesStartingFromThreeWithCustomStart() existingPages = ARCHIVES_3_TO_5 self:assertEquals(han._main("Talk:Foo/Archive ", 3), 5) end function suite:testMain() existingPages = ARCHIVES_3_TO_5 local frame = mw.getCurrentFrame() local childFrame = frame:newChild{ title = "Module:Highest archive number", args = {"Talk:Foo/Archive ", start="3"} } self:assertEquals(han.main(childFrame), 5) end function suite:testWrapperTemplate() existingPages = ARCHIVES_1_TO_5 local frame = mw.getCurrentFrame() local parentFrame = frame:newChild{ title = "Template:Highest archive number", args = {"Talk:Foo/Archive "} } local childFrame = parentFrame:newChild{ title = "Module:Highest archive number", args = {} } self:assertEquals(han.main(childFrame), 5) end return suite
Summary:
Please note that all contributions to Stockhub may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Stockhub:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Module:Highest archive number/testcases/doc
(
edit
)