Don't depend on project file layout, disable compileEnvironmentTest for now because it messes with stdlib heavily.

This commit is contained in:
Maxim Shafirov
2011-12-30 19:58:08 +04:00
parent 1cfdbf9406
commit 28d4715db2
3 changed files with 4 additions and 5 deletions
-2
View File
@@ -1,2 +0,0 @@
Hello
World
+2 -1
View File
@@ -19,7 +19,8 @@ class IoTest() : TestSupport() {
}
fun sample() : Reader {
return InputStreamReader((this as java.lang.Object).getClass()?.getClassLoader()?.getResourceAsStream("test/HelloWorld.txt"))
return StringReader("""Hello
World""");
}
fun testLineIterator() {