Readibilise transformer test

This commit is contained in:
Vit Brunner
2014-10-12 17:36:31 +02:00
parent b3f8eaccbb
commit 0dc95abcfc
@@ -9,96 +9,52 @@ module "transformer", {
transformer = injector.get "transformer"
english = {
meta: {
Title: "Ten Commandments"
Author: "God knows"
}
content: [{
section: "1"
text: "Thou shalt have no other gods before me"
}, {
section: "2"
text: "Thou shalt not take the name of the Lord thy God in vain"
}, {
section: "3"
text: "Remember the sabbath day, to keep it holy"
}]
meta: { Title: "Ten Commandments", Author: "God knows" }
content: [
{ section: "1", text: "Thou shalt have no other gods before me" }
{ section: "2", text: "Thou shalt not take the name of the Lord thy God in vain" }
{ section: "3", text: "Remember the sabbath day, to keep it holy" }
]
}
czech = {
meta: {
Title: "Desatero"
Author: "Ví bůh"
}
content: [{
section: "1"
text: "V jednoho Boha věřiti budeš."
}, {
section: "2"
text: "Nevezmeš jména Božího nadarmo."
}, {
section: "3"
text: "Pomni, abys den sváteční světil."
}]
meta: { Title: "Desatero", Author: "Ví bůh" }
content: [
{ section: "1", text: "V jednoho Boha věřiti budeš." }
{ section: "2", text: "Nevezmeš jména Božího nadarmo." }
{ section: "3", text: "Pomni, abys den sváteční světil." }
]
}
polish = {
meta: {
Title: "Dekalog"
Author: "Bóg wie"
}
content: [{
section: "1"
text: "Nie będziesz miał bogów cudzych przede mną."
}, {
section: "2"
text: "Nie będziesz wzywał imienia Boga twego nadaremno."
}, {
section: "3"
text: "Pamiętaj, abyś dzień święty święcił."
}]
meta: { Title: "Dekalog", Author: "Bóg wie" }
content: [
{ section: "1", text: "Nie będziesz miał bogów cudzych przede mną." }
{ section: "2", text: "Nie będziesz wzywał imienia Boga twego nadaremno." }
{ section: "3", text: "Pamiętaj, abyś dzień święty święcił." }
]
}
expected = {
meta: [{
Title: "Ten Commandments"
Author: "God knows"
}, {
Title: "Desatero"
Author: "Ví bůh"
}, {
Title: "Dekalog"
Author: "Bóg wie"
}]
meta: [
{ Title: "Ten Commandments", Author: "God knows" }
{ Title: "Desatero", Author: "Ví bůh" }
{ Title: "Dekalog", Author: "Bóg wie" }
]
verses: [[{
section: "1"
text: "Thou shalt have no other gods before me"
}, {
section: "1"
text: "V jednoho Boha věřiti budeš."
}, {
section: "1"
text: "Nie będziesz miał bogów cudzych przede mną."
}], [{
section: "2"
text: "Thou shalt not take the name of the Lord thy God in vain"
}, {
section: "2"
text: "Nevezmeš jména Božího nadarmo."
}, {
section: "2"
text: "Nie będziesz wzywał imienia Boga twego nadaremno."
}], [{
section: "3"
text: "Remember the sabbath day, to keep it holy"
}, {
section: "3"
text: "Pomni, abys den sváteční světil."
}, {
section: "3"
text: "Pamiętaj, abyś dzień święty święcił."
}]]
verses: [[
{ section: "1", text: "Thou shalt have no other gods before me" }
{ section: "1", text: "V jednoho Boha věřiti budeš." }
{ section: "1", text: "Nie będziesz miał bogów cudzych przede mną." }
], [
{ section: "2", text: "Thou shalt not take the name of the Lord thy God in vain" }
{ section: "2", text: "Nevezmeš jména Božího nadarmo." }
{ section: "2", text: "Nie będziesz wzywał imienia Boga twego nadaremno." }
], [
{ section: "3", text: "Remember the sabbath day, to keep it holy" }
{ section: "3", text: "Pomni, abys den sváteční světil." }
{ section: "3", text: "Pamiętaj, abyś dzień święty święcił." }
]]
}
}