Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
zeriyoshi committed Aug 22, 2024
1 parent 36c3aae commit f869eb4
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions ext/tests/004.phpt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
--TEST--
Test phpinfo()
--EXTENSIONS--
conga
--FILE--
<?php
ob_start(
static fn (string $phpinfo): string
=> str_contains($phpinfo, 'conga support') ? 'Success' : 'Failure'
);
phpinfo();
ob_end_flush();
?>
--EXPECT--
Success

0 comments on commit f869eb4

Please sign in to comment.