Module:Formatted appearance/testcases
Appearance
![]() | This is the test cases page for the module Module:Formatted appearance. Results of the test cases. |
-- Unit tests for [[Module:Formatted Appearance]]. Click talk page to run tests.
local p = require('Module:UnitTests')
function p:test_generic()
self:preprocess_equals_many('{{#invoke:Formatted Appearance|getFormattedAppearance|', '}}', {
{'appearance_major_work=Arrow', '\'\'Arrow\'\''},
{'appearance_minor_work=Pilot', '"Pilot"'},
{'appearance_date=October 10, 2012', 'October 10, 2012'},
{'appearance_major_work=Arrow|appearance_minor_work=Pilot', '{{unbulleted list|\"Pilot\"|\'\'Arrow\'\'}}'},
{'appearance_major_work=Arrow|appearance_date=October 10, 2012', '{{unbulleted list|\'\'Arrow\'\'|October 10, 2012}}'},
{'appearance_minor_work=Pilot|appearance_date=October 10, 2012', '{{unbulleted list|"Pilot"|October 10, 2012}}'},
{'appearance_major_work=Arrow|appearance_minor_work=Pilot|appearance_date=October 10, 2012', '{{unbulleted list|"Pilot"|\'\'Arrow\'\'|October 10, 2012}}'},
{'appearance_major_work=[[Arrow (TV series)|Arrow]]|appearance_minor_work=[[Pilot (Arrow)|Pilot]]|appearance_date={{start date|2012|10|10}}', '{{unbulleted list|"[[Pilot (Arrow)|Pilot]]"|\'\'[[Arrow (TV series)|Arrow]]\'\'|{{start date|2012|10|10}}}}'},
})
end
function p:test_comic()
self:preprocess_equals_many('{{#invoke:Formatted Appearance|getFormattedAppearance|', '}}', {
{'appearance_major_work=The Incredible Hulk', '\'\'The Incredible Hulk\'\''},
{'appearance_volume=180', ''},
{'appearance_volume=#180', ''},
{'appearance_date=October, 1974', 'October, 1974'},
{'appearance_major_work=The Incredible Hulk|appearance_volume=180', '\'\'The Incredible Hulk\'\' #180'},
{'appearance_major_work=The Incredible Hulk|appearance_date=October, 1974', '{{unbulleted list|\'\'The Incredible Hulk\'\'|October, 1974}}'},
{'appearance_volume=180|first_appearance_date=October, 1974', 'October, 1974'},
{'appearance_major_work=The Incredible Hulk|appearance_volume=180|first_appearance_date=October, 1974', '{{unbulleted list|\'\'The Incredible Hulk\'\' #180|October, 1974}}'},
{'appearance_major_work=The Incredible Hulk|appearance_volume=Volume 180|first_appearance_date=October, 1974', '{{unbulleted list|\'\'The Incredible Hulk\'\' Hulk Volume #180|October, 1974}}'},
{'appearance_major_work=The Incredible Hulk|appearance_volume=Volume #180|first_appearance_date=October, 1974', '{{unbulleted list|\'\'The Incredible Hulk\'\' Volume #180|October, 1974}}'},
{'appearance_major_work=[[The Incredible Hulk (comic book)|The Incredible Hulk]]|appearance_volume=180|appearance_date={{start date|1974|10}}', '{{unbulleted list|\'\'[[The Incredible Hulk (comic book)|The Incredible Hulk]]\'\' #180|{{start date|1974|10}}}}'},
})
end
return p