Module:Ft.dk link/testcases explained

-- Unit tests for . Click talk page to run tests.local p = require('Module:UnitTests')local ft_id = require('Module:Ft.dk link')

function p:test_ft_id self:equals('ö handled correctly', ft_id.link_url('Q3744442'), 'https://www.thedanishparliament.dk/members/oezlem-sara-cekic') self:equals('ð and ú handled correctly', ft_id.link_url('Q845278'), 'https://www.thedanishparliament.dk/members/sjuroeur-skaale') self:equals('í and á handled correctly', ft_id.link_url('Q466097'), 'https://www.thedanishparliament.dk/members/annita-a-frioeriksmoerk')

self:equals('Entity without property returns empty string', ft_id.link_url('Q1'), ) self:equals('Calling with nil returns empty string', ft_id.link_url(nil), ) self:equals('"no value" returns empty string, testing with ', ft_id.link_url('Q6372265'), )end

return p