diff options
author | Florian Pritz <bluewind@xinu.at> | 2016-08-20 14:32:39 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-08-20 14:32:39 +0200 |
commit | b7853a87ac0575f83793d5d6a7ed44849156e189 (patch) | |
tree | ebebae1295d40f6cdfa77138521691c038e8cc59 /application/views/tests | |
parent | c9d3f108266a8179f3a4e1ca8b09553e16f2a312 (diff) |
Test \libraries\Output_cache
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/views/tests')
-rw-r--r-- | application/views/tests/echo-fragment.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/application/views/tests/echo-fragment.php b/application/views/tests/echo-fragment.php new file mode 100644 index 000000000..f8c26661f --- /dev/null +++ b/application/views/tests/echo-fragment.php @@ -0,0 +1,5 @@ +<?php +echo "listing ".count($items)." items:\n"; +foreach ($items as $item) { + echo $item; +} |