You are here

public function Mandrill_TagsTest::getList in Mandrill 7.2

See also

Mandrill_Tags::getList()

File

tests/includes/mandrill_tags_test.inc, line 15
A virtual Mandrill Tags API implementation for use in testing.

Class

Mandrill_TagsTest
@file A virtual Mandrill Tags API implementation for use in testing.

Code

public function getList() {
  $tags = $this
    ->getTagsTestData();
  foreach ($tags as $tag) {
    unset($tag['stats']);
  }
  return $tags;
}