Test the vocabulary overview with no vocabularies.

File

modules/taxonomy/taxonomy.test, line 148
Tests for taxonomy.module.

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.');
}