我正在为一个模型编写测试,该模型在其中一个属性发生更改时触发事件。不幸的是,我无法找出测试它的最佳方法。型号代码为:
class Foo extends Eloquent {
public function setNameAttribute($value) {
$this->attributes['name'] = $value;
if($this->exists && ($this->original['name'] != $value)) {
Event::fire('foo.NameChange', array($this));
}
}
}
我对事件火灾的初步测试:
$bar = Foo::first();
Event::shouldReceive('fire')->once()->with('foo.NameChange', array($bar));
$bar->name = 'test';
问题是,如果出现上述测试仍然通过:
如果只发生一个foo.NameChange
事件,我怎样才能通过测试?所有其他的Senario都不会通过我的测试。