我试图在this video之后使用Laravel运行phpspec
我使用composer安装它,并添加一个别名,但是当我运行时:
phpspec describe Shipping'
我收到错误:
[RuntimeException]
Can not find appropriate suite scope for class `Shipping`.
答案 0 :(得分:3)
检查composer.json中的命名空间
"psr-4": {
"Acme\\":"app/Acme"
}
和当然
composer dumpautoload
和
在phpspec.yml文件中
suites:
acme_suites:
namespace: Acme
phpspec描述Acme \ Shipping