-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathserver.feature
More file actions
38 lines (31 loc) · 1.1 KB
/
Copy pathserver.feature
File metadata and controls
38 lines (31 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@require-php-5.4
Feature: Serve WordPress locally
Scenario: Vanilla install
Given a WP install
And I launch in the background `wp server --host=localhost --port=8181`
And I run `wp option set blogdescription 'Just another WordPress site'`
When I run `curl -sS localhost:8181`
Then STDOUT should contain:
"""
Just another WordPress site
"""
When I run `curl -sS localhost:8181/license.txt > /tmp/license.txt`
And I run `cmp /tmp/license.txt license.txt`
Then STDOUT should be empty
Scenario: Access wp-login.php
Given a WP install
And I launch in the background `wp server --host=localhost --port=8182`
When I run `curl -sS http://localhost:8182/wp-login.php`
Then STDOUT should contain:
"""
wp-login.php
"""
Scenario: Pretty permalinks
Given a WP install
And I launch in the background `wp server --host=localhost --port=8183`
And I run `wp option update permalink_structure '/%postname%/'`
When I run `curl -sS http://localhost:8183/?p=1`
Then STDOUT should contain:
"""
Hello world!
"""