public function TraversableStringTest::testString

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Util/TraversableStringTest.php, line 18

Class

TraversableStringTest

Namespace

Assetic\Test\Util

Code

public function testString() {
  $foo = new TraversableString('foo', array(
    'foo',
    'bar',
  ));
  $this
    ->assertEquals('foo', (string) $foo);
}