Switch to tabs for indentation

I got drunk, read the coffeescript style guide, and decided to use
spaces. Spaces for indentation is still as bad an idea as it ever were,
and this is not a coffeescript project - it's multilingual, hence using
coffeescript conventions is pointless.
This commit is contained in:
Vit Brunner
2013-06-15 16:55:27 +01:00
parent 577993ec99
commit 8c777c5301
12 changed files with 192 additions and 188 deletions
@@ -1,6 +1,6 @@
this.testReader = (name, testCases) ->
injector = angular.injector(["ng", "sideBySide"])
reader = injector.get(name)
injector = angular.injector(["ng", "sideBySide"])
reader = injector.get(name)
for testCase in testCases
deepEqual(reader(testCase.tested), testCase.expected)
for testCase in testCases
deepEqual(reader(testCase.tested), testCase.expected)
@@ -1,29 +1,29 @@
test("jsonReader", () ->
testCases = [{
tested: """
{
meta: {
Title: "Test leading text"
},
content: [
"<p><strong>This</strong> is leading text.</p>",
{ section: "I", text: "<p>First section.</p>" },
{ section: "II", text: "<p>Second section.</p>" },
{ text: "<p>Another section.</p>" },
],
}"""
expected: {
meta: {
Title: "Test leading text"
}
content: [
{ section: "", text: "<p><strong>This</strong> is leading text.</p>" }
{ section: "I", text: "<p>First section.</p>" }
{ section: "II", text: "<p>Second section.</p>" }
{ section: "", text: "<p>Another section.</p>" }
]
}
}]
testCases = [{
tested: """
{
meta: {
Title: "Test leading text"
},
content: [
"<p><strong>This</strong> is leading text.</p>",
{ section: "I", text: "<p>First section.</p>" },
{ section: "II", text: "<p>Second section.</p>" },
{ text: "<p>Another section.</p>" },
],
}"""
expected: {
meta: {
Title: "Test leading text"
}
content: [
{ section: "", text: "<p><strong>This</strong> is leading text.</p>" }
{ section: "I", text: "<p>First section.</p>" }
{ section: "II", text: "<p>Second section.</p>" }
{ section: "", text: "<p>Another section.</p>" }
]
}
}]
testReader("jsonReader", testCases)
testReader("jsonReader", testCases)
)
@@ -1,74 +1,76 @@
test("markdownReader", () ->
testCases = [{
tested: """
Title: Universal Declaration of Human Rights
Author: John Peters Humphrey
Date: 1948
Source: http://en.wikisource.org/wiki/Universal_Declaration_of_Human_Rights
testCases = [{
tested: """
Title: Universal Declaration of Human Rights
Author: John Peters Humphrey
Date: 1948
Source: http://en.wikisource.org/wiki/Universal_Declaration_of_Human_Rights
## 1
All human beings are born *free* and equal in dignity and rights...
## 1
All human beings are born *free* and equal in dignity and rights...
## 2
Everyone is entitled to all the rights and freedoms...
## 2
Everyone is entitled to all the rights and freedoms...
Furthermore, no distinction shall be made on the basis of...
Furthermore, no distinction shall be made on the basis of...
## 11.1
Everyone charged with a penal offence has the right to be presumed...
## 11.1
Everyone charged with a penal offence has the right to be presumed...
## 11.2
No one shall be held guilty of any penal offence...
## 11.2
No one shall be held guilty of any penal offence...
## 13
Everyone is entitled to:
## 13
Everyone is entitled to:
- sex
- drugs
- rock & roll
"""
expected: {
meta: {
Title: "Universal Declaration of Human Rights"
Author: "John Peters Humphrey"
Date: "1948"
Source: '<a href="http://en.wikisource.org/wiki/Universal_Declaration_of_Human_Rights">http://en.wikisource.org/wiki/Universal_Declaration_of_Human_Rights</a>'
}
content: [
{ section: "1", text: "<p>All human beings are born <em>free</em> and equal in dignity and rights...</p>\n" }
{ section: "2", text: """<p>Everyone is entitled to all the rights and freedoms...</p>
<p>Furthermore, no distinction shall be made on the basis of...</p>\n""" }
{ section: "11.1", text: "<p>Everyone charged with a penal offence has the right to be presumed...</p>\n" }
{ section: "11.2", text: "<p>No one shall be held guilty of any penal offence...</p>\n" }
{ section: "13", text: """<p>Everyone is entitled to:</p>
<ul>
<li>sex</li>
<li>drugs</li>
<li>rock &amp; roll</li>
</ul>\n""" }
]
}
}, {
tested: """
Title: Test leading text
- sex
- drugs
- rock & roll
"""
expected: {
meta: {
Title: "Universal Declaration of Human Rights"
Author: "John Peters Humphrey"
Date: "1948"
Source: '<a href="http://en.wikisource.org/wiki/Universal_Declaration_of_Human_Rights">http://en.wikisource.org/wiki/Universal_Declaration_of_Human_Rights</a>'
}
content: [
{ section: "1", text: "<p>All human beings are born <em>free</em> and equal in dignity and rights...</p>\n" }
{ section: "2", text: """
<p>Everyone is entitled to all the rights and freedoms...</p>
<p>Furthermore, no distinction shall be made on the basis of...</p>\n""" }
{ section: "11.1", text: "<p>Everyone charged with a penal offence has the right to be presumed...</p>\n" }
{ section: "11.2", text: "<p>No one shall be held guilty of any penal offence...</p>\n" }
{ section: "13", text: """
<p>Everyone is entitled to:</p>
<ul>
<li>sex</li>
<li>drugs</li>
<li>rock &amp; roll</li>
</ul>\n""" }
]
}
}, {
tested: """
Title: Test leading text
**This** is leading text.
# I
First section.
# II
Second section.
"""
expected: {
meta: {
Title: "Test leading text"
}
content: [
{ section: "", text: "<p><strong>This</strong> is leading text.</p>\n" }
{ section: "I", text: "<p>First section.</p>\n" }
{ section: "II", text: "<p>Second section.</p>\n" }
]
}
}]
**This** is leading text.
# I
First section.
# II
Second section.
"""
expected: {
meta: {
Title: "Test leading text"
}
content: [
{ section: "", text: "<p><strong>This</strong> is leading text.</p>\n" }
{ section: "I", text: "<p>First section.</p>\n" }
{ section: "II", text: "<p>Second section.</p>\n" }
]
}
}]
testReader("markdownReader", testCases)
testReader("markdownReader", testCases)
)