您好我想在Laravel 4.1中测试非常简单的方法。我开始在laravel进行测试,我将在这里得到一些帮助。
我正在使用phpspec ..
这是方法:
public function hasTag($codename)
{
$tag = $this->tags()->where('codename', '=', $codename)->first();
if (is_null($tag))
{
return false;
}
return true;
}
答案 0 :(得分:0)
您可以执行以下操作:
import GameCenter