We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc53c37 commit 68187c4Copy full SHA for 68187c4
lib/src/test/kotlin/at/bitfire/synctools/icalendar/validation/ICalPreprocessorTest.kt
@@ -62,6 +62,12 @@ class ICalPreprocessorTest {
62
}
63
64
65
+ @Test
66
+ fun testPreprocessStream_joinsLinesCorrectly() {
67
+ val result = processor.preprocessStream(StringReader("BEGIN:VCALENDAR\nBEGIN:VEVENT")).readText()
68
+ assertEquals("BEGIN:VCALENDAR\r\nBEGIN:VEVENT\r\n", result)
69
+ }
70
+
71
@Test
72
fun testPreprocessStream_runsApplyPreprocessors() {
73
val processor = spyk<ICalPreprocessor>()
0 commit comments