Jump to content

Module:Template test case/config

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Mr. Stradivarius (talk | contribs) at 13:54, 27 November 2014 (create a config table with wrapper templates and their default options). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

-- This module holds configuration data for [[Module:Template test cases]].

return {

wrappers = {
	['Template:Test case'] = {
		func = 'table'
	},
	['Template:Testcase table'] = {
		func = 'table',
		options = {format = 'columns'}
	},
	['Template:Testcase rows'] = {
		func = 'table',
		options = {format = 'rows'}
	},
	['Template:Test case nowiki'] = {
		func = 'nowiki',
		options = {showcode = true}
	}
}

}