如何使用phpspec

时间:2015-07-04 13:33:14

标签: php laravel-4 phpspec

您好我想在Laravel 4.1中测试非常简单的方法。我开始在laravel进行测试,我将在这里得到一些帮助。

我正在使用phpspec ..

这是方法:

public function hasTag($codename)
{
    $tag = $this->tags()->where('codename', '=', $codename)->first();
    if (is_null($tag))
    {
        return false;
    }

    return true;
}

1 个答案:

答案 0 :(得分:0)

您可以执行以下操作:

import GameCenter