summaryrefslogtreecommitdiff
path: root/tests/test_simple
diff options
context:
space:
mode:
authorLaria Carolin Chabowski <laria@laria.me>2020-09-13 21:35:16 +0200
committerLaria Carolin Chabowski <laria@laria.me>2020-09-13 21:35:16 +0200
commit4e2bfed23c17929795f2082d6e77937170caeaa9 (patch)
tree4d9f66596c80af8081e4279580a3bbb4721ef184 /tests/test_simple
parent5ee6bbbf3002daf075fa77007daccf4d2af25241 (diff)
downloadste-4e2bfed23c17929795f2082d6e77937170caeaa9.tar.gz
ste-4e2bfed23c17929795f2082d6e77937170caeaa9.tar.bz2
ste-4e2bfed23c17929795f2082d6e77937170caeaa9.zip
Turn our functional tests into PhpUnit tests
Diffstat (limited to 'tests/test_simple')
-rw-r--r--tests/test_simple/.gitignore3
-rw-r--r--tests/test_simple/code.php6
-rw-r--r--tests/test_simple/test.tpl1
-rw-r--r--tests/test_simple/want1
4 files changed, 0 insertions, 11 deletions
diff --git a/tests/test_simple/.gitignore b/tests/test_simple/.gitignore
deleted file mode 100644
index de2a41b..0000000
--- a/tests/test_simple/.gitignore
+++ /dev/null
@@ -1,3 +0,0 @@
-have
-*.ast
-*.transc.php
diff --git a/tests/test_simple/code.php b/tests/test_simple/code.php
deleted file mode 100644
index 2712e2b..0000000
--- a/tests/test_simple/code.php
+++ /dev/null
@@ -1,6 +0,0 @@
-<?php
-
-function test_func($ste)
-{
- $ste->vars["foo"] = "World";
-}
diff --git a/tests/test_simple/test.tpl b/tests/test_simple/test.tpl
deleted file mode 100644
index 30a4f22..0000000
--- a/tests/test_simple/test.tpl
+++ /dev/null
@@ -1 +0,0 @@
-Hello $foo! \ No newline at end of file
diff --git a/tests/test_simple/want b/tests/test_simple/want
deleted file mode 100644
index 980a0d5..0000000
--- a/tests/test_simple/want
+++ /dev/null
@@ -1 +0,0 @@
-Hello World!