work in progress on compiler unification between cli and plugin
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import kotlin.modules.*
|
||||
|
||||
val modules = module("smoke") {
|
||||
source files "Smoke.kt"
|
||||
source files "src/Smoke.kt"
|
||||
testSource files "test/SmokeTest.kt"
|
||||
jar name System.getProperty("java.io.tmpdir") + "/smoke.jar"
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
import std.io
|
||||
|
||||
import junit.framework.*
|
||||
|
||||
class SmokeTest() : TestCase() {
|
||||
fun testMe() {
|
||||
println("test")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user