@@ -27,7 +27,7 @@ use crate::{context::Context, utils};
2727///
2828/// - `scripts` is the path of your php test scripts.
2929///
30- /// See [example hello integration test](https://github.com/jmjoy /phper/blob/master/examples/hello/tests/integration.rs).
30+ /// See [example hello integration test](https://github.com/phper-framework /phper/blob/master/examples/hello/tests/integration.rs).
3131pub fn test_php_scripts ( exe_path : impl AsRef < Path > , scripts : & [ & dyn AsRef < Path > ] ) {
3232 let condition = |output : Output | output. status . success ( ) ;
3333 let scripts = scripts
@@ -46,7 +46,7 @@ pub fn test_php_scripts(exe_path: impl AsRef<Path>, scripts: &[&dyn AsRef<Path>]
4646///
4747/// - `scripts` is the path of your php test scripts.
4848///
49- /// See [example hello integration test](https://github.com/jmjoy /phper/blob/master/examples/hello/tests/integration.rs).
49+ /// See [example hello integration test](https://github.com/phper-framework /phper/blob/master/examples/hello/tests/integration.rs).
5050pub fn test_php_scripts_with_lib ( lib_path : impl AsRef < Path > , scripts : & [ & dyn AsRef < Path > ] ) {
5151 let condition = |output : Output | output. status . success ( ) ;
5252 let scripts = scripts
@@ -69,7 +69,7 @@ pub type ScriptCondition<'a> = (&'a dyn AsRef<Path>, &'a dyn Fn(Output) -> bool)
6969/// - `scripts` is the slice of the tuple, format is `(path of your php test
7070/// script, checker function or closure)`.
7171///
72- /// See [example logging integration test](https://github.com/jmjoy /phper/blob/master/examples/logging/tests/integration.rs).
72+ /// See [example logging integration test](https://github.com/phper-framework /phper/blob/master/examples/logging/tests/integration.rs).
7373pub fn test_php_scripts_with_condition (
7474 exe_path : impl AsRef < Path > , scripts : & [ ScriptCondition < ' _ > ] ,
7575) {
0 commit comments