Use https everywhere - tests and test data

This commit is contained in:
Yaroslav Russkih
2019-02-18 21:25:20 +01:00
committed by Ilya Chernikov
parent 7135f1972a
commit 028a311949
46 changed files with 336 additions and 336 deletions
+8 -8
View File
@@ -130,14 +130,14 @@ fun testAllInline() : String {
p { +"this format can be used as an alternative markup to XML" }
// an element with attributes and text content
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
// mixed content
p {
+"This is some"
b { +"mixed" }
+"text. For more see the"
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
+"project"
}
p { +"some text" }
@@ -170,14 +170,14 @@ fun testHtmlNoInline() : String {
p { +"this format can be used as an alternative markup to XML" }
// an element with attributes and text content
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
// mixed content
p {
+"This is some"
b { +"mixed" }
+"text. For more see the"
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
+"project"
}
p { +"some text" }
@@ -210,14 +210,14 @@ fun testBodyNoInline() : String {
p { +"this format can be used as an alternative markup to XML" }
// an element with attributes and text content
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
// mixed content
p {
+"This is some"
b { +"mixed" }
+"text. For more see the"
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
+"project"
}
p { +"some text" }
@@ -250,14 +250,14 @@ fun testBodyHtmlNoInline() : String {
p { +"this format can be used as an alternative markup to XML" }
// an element with attributes and text content
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
// mixed content
p {
+"This is some"
b { +"mixed" }
+"text. For more see the"
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
+"project"
}
p { +"some text" }
@@ -130,14 +130,14 @@ inline fun testAllInline(f: () -> String) : String {
p { +"this format can be used as an alternative markup to XML" }
// an element with attributes and text content
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
// mixed content
p {
+"This is some"
b { +"mixed" }
+"text. For more see the"
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
+"project"
}
p { +"some text" }
@@ -170,14 +170,14 @@ inline fun testHtmlNoInline(crossinline f: () -> String) : String {
p { +"this format can be used as an alternative markup to XML" }
// an element with attributes and text content
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
// mixed content
p {
+"This is some"
b { +"mixed" }
+"text. For more see the"
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
+"project"
}
p { +"some text" }
@@ -210,14 +210,14 @@ inline fun testBodyNoInline(crossinline f: () -> String) : String {
p { +"this format can be used as an alternative markup to XML" }
// an element with attributes and text content
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
// mixed content
p {
+"This is some"
b { +"mixed" }
+"text. For more see the"
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
+"project"
}
p { +"some text" }
@@ -250,14 +250,14 @@ inline fun testBodyHtmlNoInline(crossinline f: () -> String) : String {
p { +"this format can be used as an alternative markup to XML" }
// an element with attributes and text content
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
// mixed content
p {
+"This is some"
b { +"mixed" }
+"text. For more see the"
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
+"project"
}
p { +"some text" }