function TaxonomyVocabularyFunctionalTest::testTaxonomyAdminNoVocabularies

Test the vocabulary overview with no vocabularies.

File

modules/taxonomy/taxonomy.test, line 148

Class

TaxonomyVocabularyFunctionalTest
Tests the taxonomy vocabulary interface.

Code

function testTaxonomyAdminNoVocabularies() {
  // Delete all vocabularies.
  $vocabularies = taxonomy_get_vocabularies();
  foreach ($vocabularies as $key => $vocabulary) {
    taxonomy_vocabulary_delete($key);
  }
  // Confirm that no vocabularies are found in the database.
  $this->assertFalse(taxonomy_get_vocabularies(), 'No vocabularies found in the database.');
  $this->drupalGet('admin/structure/taxonomy');
  // Check the default message for no vocabularies.
  $this->assertText(t('No vocabularies available.'), 'No vocabularies were found.');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.