From ce35cb375a973f77a0de782a55c973264d0223ad Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Sch=C3=BCrmann?= Date: Sat, 25 Apr 2009 18:42:13 +0000 Subject: [PATCH] Initial commit --- tests/output/ob_get_status.phpt | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 tests/output/ob_get_status.phpt diff --git a/tests/output/ob_get_status.phpt b/tests/output/ob_get_status.phpt new file mode 100644 index 0000000000..a6a3498ca3 --- /dev/null +++ b/tests/output/ob_get_status.phpt @@ -0,0 +1,34 @@ +--TEST-- +ob_get_status() function basic test +--CREDITS-- +Sebastian Schürmann +sebs@php.net +Testfest 2009 Munich +--FILE-- + +--EXPECT-- +array(1) { + [0]=> + array(7) { + ["chunk_size"]=> + int(0) + ["size"]=> + int(40960) + ["block_size"]=> + int(10240) + ["type"]=> + int(1) + ["status"]=> + int(0) + ["name"]=> + string(22) "default output handler" + ["del"]=> + bool(true) + } +} + -- 2.40.0