mirror of
https://gh.wpcy.net/https://github.com/wp-cli/entity-command.git
synced 2026-05-03 10:23:37 +08:00
31 lines
1.2 KiB
Gherkin
31 lines
1.2 KiB
Gherkin
Feature: Manage WordPress taxonomies
|
|
|
|
Background:
|
|
Given a WP install
|
|
|
|
@require-wp-3.7
|
|
Scenario: Listing taxonomies
|
|
When I run `wp taxonomy list --format=csv`
|
|
Then STDOUT should be CSV containing:
|
|
| name | label | description | object_type | show_tagcloud | hierarchical | public |
|
|
| category | Categories | | post | 1 | 1 | 1 |
|
|
| post_tag | Tags | | post | 1 | | 1 |
|
|
|
|
When I run `wp taxonomy list --object_type=link --format=csv`
|
|
Then STDOUT should be CSV containing:
|
|
| name | label | description | object_type | show_tagcloud | hierarchical | public |
|
|
| link_category | Link Categories | | link | | | |
|
|
|
|
Scenario: Get taxonomy
|
|
When I try `wp taxonomy get invalid-taxonomy`
|
|
Then STDERR should be:
|
|
"""
|
|
Error: Taxonomy invalid-taxonomy doesn't exist.
|
|
"""
|
|
|
|
When I run `wp taxonomy get category`
|
|
Then STDOUT should be a table containing rows:
|
|
| Field | Value |
|
|
| name | category |
|
|
| object_type | ["post"] |
|
|
| label | Categories |
|