You are here

public function TagadelicTagToStringTest::test__ToStringHasNoWeight in Tagadelic 7.2

@covers tagadelictag::__tostring

File

tests/TagadelicTagToStringTest.php, line 102

Class

TagadelicTagToStringTest
Class Tagadelictagtostringtest

Code

public function test__ToStringHasNoWeight() {
  $this->object
    ->set_weight(0);
  $this->drupal
    ->expects($this
    ->any())
    ->method('l')
    ->with($this
    ->anything(), $this
    ->anything(), $this
    ->equalto(array()))
    ->will($this
    ->returnvalue(""));
  $this->object
    ->__tostring();
}