You are here

function BiblioKeywordUnitTest::testBiblioGetKeywordById in Bibliography Module 7.2

Same name and namespace in other branches
  1. 6.2 tests/keyword.test \BiblioKeywordUnitTest::testBiblioGetKeywordById()

File

tests/keyword.test, line 52
Tests for keyword functions.

Class

BiblioKeywordUnitTest
Unit tests for keyword functions.

Code

function testBiblioGetKeywordById() {
  $keyword = $this
    ->createKeyword();
  $word = (array) biblio_get_keyword_by_id($keyword['kid']);
  $this
    ->assertEqual($keyword, $word, 'Get keyword by ID');
}