summaryrefslogtreecommitdiff
path: root/tests/mime-detection/test.gs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mime-detection/test.gs')
-rw-r--r--tests/mime-detection/test.gs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/mime-detection/test.gs b/tests/mime-detection/test.gs
new file mode 100644
index 00000000..94c48ee8
--- /dev/null
+++ b/tests/mime-detection/test.gs
@@ -0,0 +1,11 @@
+class Sample : Object
+ init
+ pass
+
+ def run()
+ print "Hello World"
+
+init
+ var sample = new Sample()
+ sample.run ();
+