mirror of
https://github.com/wassname/side-by-side.git
synced 2026-09-09 11:34:24 +08:00
Readibilise transformer test
This commit is contained in:
@@ -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ł." }
|
||||
]]
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user