@@ -27,7 +27,7 @@ use crate::{context::Context, utils};
27
27
///
28
28
/// - `scripts` is the path of your php test scripts.
29
29
///
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).
31
31
pub fn test_php_scripts ( exe_path : impl AsRef < Path > , scripts : & [ & dyn AsRef < Path > ] ) {
32
32
let condition = |output : Output | output. status . success ( ) ;
33
33
let scripts = scripts
@@ -46,7 +46,7 @@ pub fn test_php_scripts(exe_path: impl AsRef<Path>, scripts: &[&dyn AsRef<Path>]
46
46
///
47
47
/// - `scripts` is the path of your php test scripts.
48
48
///
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).
50
50
pub fn test_php_scripts_with_lib ( lib_path : impl AsRef < Path > , scripts : & [ & dyn AsRef < Path > ] ) {
51
51
let condition = |output : Output | output. status . success ( ) ;
52
52
let scripts = scripts
@@ -69,7 +69,7 @@ pub type ScriptCondition<'a> = (&'a dyn AsRef<Path>, &'a dyn Fn(Output) -> bool)
69
69
/// - `scripts` is the slice of the tuple, format is `(path of your php test
70
70
/// script, checker function or closure)`.
71
71
///
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).
73
73
pub fn test_php_scripts_with_condition (
74
74
exe_path : impl AsRef < Path > , scripts : & [ ScriptCondition < ' _ > ] ,
75
75
) {
0 commit comments