[minor] refactor scripting tests: extract cli testdata into separate dir, remove annotation

This commit is contained in:
Ilya Chernikov
2018-12-18 18:03:56 +01:00
parent c165666d94
commit 48965fb64a
5 changed files with 5 additions and 6 deletions
+2
View File
@@ -0,0 +1,2 @@
print("Hello from basic script!")
@@ -0,0 +1,4 @@
@file:Import("hello_req.kt")
print("Hello from ${RequiredFromHello().name}!")
@@ -0,0 +1,2 @@
print("Hello, ${args[0]}!")
+5
View File
@@ -0,0 +1,5 @@
class RequiredFromHello {
val name = "required"
}