Skip to content

Commit

Permalink
Mostly skipped tests for inc/taxonomies.php
Browse files Browse the repository at this point in the history
  • Loading branch information
benlk committed Jan 6, 2015
1 parent 26cf5db commit 51dbe5a
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions tests/inc/test-taxonomies.php
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
);
}
}

0 comments on commit 51dbe5a

Please sign in to comment.