Index: wp-testcase/test-xmlrpc-api/test_wp_getTaxonomies.php
===================================================================
--- wp-testcase/test-xmlrpc-api/test_wp_getTaxonomies.php	(revision 654)
+++ wp-testcase/test-xmlrpc-api/test_wp_getTaxonomies.php	(working copy)
@@ -8,8 +8,18 @@
 		$this->assertEquals( 403, $result->code );
 	}
 
-	function test_taxonomy_validated() {
-		$result = $this->myxmlrpcserver->wp_getTaxonomies( array( 1, 'editor', 'editor', 'category' ) );
+	function test_incapable_user() {
+		$result = $this->myxmlrpcserver->wp_getTaxonomies( array( 1, 'subscriber', 'subscriber' ) );
 		$this->assertNotInstanceOf( 'IXR_Error', $result );
+		$this->assertEquals( 0, count( $result ) );
 	}
+
+	function test_public_taxonomies() {
+		$filter = array( 'public' => true );
+		$taxonomies = get_taxonomies( $filter, 'objects' );
+
+		$result = $this->myxmlrpcserver->wp_getTaxonomies( array( 1, 'editor', 'editor', $filter ) );
+		$this->assertNotInstanceOf( 'IXR_Error', $result );
+		$this->assertEquals( count( $taxonomies ), count( $result ) );
+	}
 }
\ No newline at end of file
