You are here

private function TagadelicTaxonomyAdminWebTestCase::deleteVocabularies in Tagadelic 7.2

1 call to TagadelicTaxonomyAdminWebTestCase::deleteVocabularies()
TagadelicTaxonomyAdminWebTestCase::setUp in tests/tagadelic_taxonomy.admin.test
@scope public @returns Type Description of return value

File

tests/tagadelic_taxonomy.admin.test, line 138

Class

TagadelicTaxonomyAdminWebTestCase

Code

private function deleteVocabularies() {
  foreach (taxonomy_vocabulary_load_multiple(FALSE) as $vocabulary) {
    taxonomy_vocabulary_delete($vocabulary->vid);
  }
}