forked from argoproject/Argo
-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mostly skipped tests for inc/taxonomies.php
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?php | ||
class TaxonomiesTestFunctions extends WP_UnitTestCase { | ||
|
||
function setUp() { | ||
parent::setUp(); | ||
|
||
// Test data | ||
$this->author_user_ids = $this->factory->user->create_many(10, array('role' => 'author'));; | ||
$this->contributor_user_ids = $this->factory->user->create_many(5, array('role' => 'contributor')); | ||
} | ||
|
||
function test_largo_custom_taxonomies(){ | ||
$this->markTestSkipped("Not implemented"); | ||
} | ||
function test_largo_post_in_series() { | ||
$this->markTestSkipped("Not implemented"); | ||
} | ||
function test_largo_custom_taxonomy_terms() { | ||
$this->markTestSkipped("Not implemented"); | ||
} | ||
function test_largo_term_to_label() { | ||
$this->markTestSkipped("Not implemented"); | ||
} | ||
function test_largo_get_series_posts() { | ||
$this->markTestSkipped("Not implemented"); | ||
} | ||
function test_largo_categoy_archive_posts() { | ||
$this->markTestSkipped("Not implemented"); | ||
} | ||
function test_hide_post_type_taxonomy_menu() { | ||
$this->markTestSkipped("Not implemented"); | ||
} | ||
function test_hide_post_type_taxonomy_metabox() { | ||
$this->markTestSkipped("Not implemented"); | ||
} | ||
function test_hide_post_type_taxonomy_table() { | ||
mock_in_admin('site'); | ||
$columns = array ( | ||
'taxonomy-post-type' => 'Post Types', | ||
); | ||
$columns = hide_post_type_taxonomy_table($columns); | ||
$this->assertEquals( | ||
array(), | ||
$columns | ||
); | ||
} | ||
} | ||
|