public function testSetContent() {
$asset = $this
->getMock('Assetic\\Asset\\AssetInterface');
$this->am
->expects($this
->once())
->method('get')
->with('foo')
->will($this
->returnValue($asset));
$asset
->expects($this
->once())
->method('setContent')
->with('asdf');
$this->ref
->setContent('asdf');
}