Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
Automatically Paginate Posts
Manage
Activity
Members
Labels
Plan
Issues
11
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WP Plugins
Automatically Paginate Posts
Commits
3e5084a4
Commit
3e5084a4
authored
2 years ago
by
Erick Hitter
Browse files
Options
Downloads
Patches
Plain Diff
PHPCS
parent
4057b679
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!5
Add block-editor support
Pipeline
#4949
passed with stages
in 8 minutes and 48 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/bootstrap.php
+9
-9
9 additions, 9 deletions
tests/bootstrap.php
with
9 additions
and
9 deletions
tests/bootstrap.php
+
9
−
9
View file @
3e5084a4
...
...
@@ -5,27 +5,27 @@
* @package Automatically_Paginate_Posts
*/
$_tests_dir
=
getenv
(
'WP
_TESTS_DIR
'
);
$
autopaging
_tests_dir
=
getenv
(
'WP
autopaging_tests_dir
'
);
if
(
!
$_tests_dir
)
{
$_tests_dir
=
rtrim
(
sys_get_temp_dir
(),
'/\\'
)
.
'/wordpress-tests-lib'
;
if
(
!
$
autopaging
_tests_dir
)
{
$
autopaging
_tests_dir
=
rtrim
(
sys_get_temp_dir
(),
'/\\'
)
.
'/wordpress-tests-lib'
;
}
if
(
!
file_exists
(
$_tests_dir
.
'/includes/functions.php'
)
)
{
echo
"Could not find
$_tests_dir
/includes/functions.php, have you run bin/install-wp-tests.sh ?"
.
PHP_EOL
;
// WPCS: XSS ok.
if
(
!
file_exists
(
$
autopaging
_tests_dir
.
'/includes/functions.php'
)
)
{
echo
"Could not find
$
autopaging
_tests_dir
/includes/functions.php, have you run bin/install-wp-tests.sh ?"
.
PHP_EOL
;
// WPCS: XSS ok.
exit
(
1
);
}
// Give access to tests_add_filter() function.
require_once
$_tests_dir
.
'/includes/functions.php'
;
require_once
$
autopaging
_tests_dir
.
'/includes/functions.php'
;
/**
* Manually load the plugin being tested.
*/
function
_manually_load_plugin
()
{
function
autopaging
_manually_load_plugin
()
{
require
dirname
(
dirname
(
__FILE__
)
)
.
'/automatically-paginate-posts.php'
;
}
tests_add_filter
(
'muplugins_loaded'
,
'_manually_load_plugin'
);
tests_add_filter
(
'muplugins_loaded'
,
'
autopaging
_manually_load_plugin'
);
// Start up the WP testing environment.
require
$_tests_dir
.
'/includes/bootstrap.php'
;
require
$
autopaging
_tests_dir
.
'/includes/bootstrap.php'
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment