We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 718ecc3 commit 7dda453Copy full SHA for 7dda453
phper-test/src/cli.rs
@@ -49,15 +49,6 @@ pub fn test_php_script(lib_path: impl AsRef<Path>, script: impl AsRef<Path>) {
49
/// # Panics
50
///
51
/// Panics if any script execution fails or returns non-success status.
52
-///
53
-/// # Examples
54
55
-/// ```rust,no_run
56
-/// use phper_test::cli::test_php_scripts;
57
58
-/// let scripts = &[&"test1.php", &"test2.php"];
59
-/// test_php_scripts("/path/to/extension.so", scripts);
60
-/// ```
61
pub fn test_php_scripts(lib_path: impl AsRef<Path>, scripts: &[&dyn AsRef<Path>]) {
62
let condition = |output: Output| output.status.success();
63
let scripts = scripts
0 commit comments