diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-02-08 00:24:06 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-02-08 00:24:06 -0700 |
commit | a859a39f3455fcbf0575bd7acd25915c40922f92 (patch) | |
tree | 709c900083529913c45e782c430eec82dba9e642 /tests/test.stage | |
parent | 11554a9e5c92a98129b42598495abe7503d9208c (diff) | |
download | stage-a859a39f3455fcbf0575bd7acd25915c40922f92.tar.gz stage-a859a39f3455fcbf0575bd7acd25915c40922f92.tar.bz2 stage-a859a39f3455fcbf0575bd7acd25915c40922f92.tar.xz stage-a859a39f3455fcbf0575bd7acd25915c40922f92.zip |
Committed the tests I've been using.0.05
Good for regressions, I'll have to make some sort of test suite thing
later.
Diffstat (limited to 'tests/test.stage')
-rw-r--r-- | tests/test.stage | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/test.stage b/tests/test.stage new file mode 100644 index 0000000..cc765a4 --- /dev/null +++ b/tests/test.stage | |||
@@ -0,0 +1,35 @@ | |||
1 | |||
2 | game.title = "Code Test"; | ||
3 | game.author = "Mike Buland"; | ||
4 | game.version = 1; | ||
5 | game.revision = 0; | ||
6 | game.start = <<start>>; | ||
7 | |||
8 | global | ||
9 | { | ||
10 | command: "exit" | ||
11 | { | ||
12 | exit(); | ||
13 | } | ||
14 | } | ||
15 | |||
16 | function getVal() | ||
17 | { | ||
18 | global.stuff = {'hi': 5 }; | ||
19 | } | ||
20 | |||
21 | situation <<start>> | ||
22 | { | ||
23 | setup | ||
24 | { | ||
25 | if true then | ||
26 | { | ||
27 | getVal(); | ||
28 | } | ||
29 | } | ||
30 | |||
31 | enter | ||
32 | { | ||
33 | } | ||
34 | } | ||
35 | |||