Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このビデオに従って、Laravelでphpspecを実行しようとしています
composerで問題なくインストールし、エイリアスを追加しますが、実行すると:
phpspec describe Shipping'
エラーが発生します:
[RuntimeException] Can not find appropriate suite scope for class `Shipping`.
composer.json の名前空間を確認してください
"psr-4": { "Acme\\":"app/Acme" }
そしてもちろん
composer dumpautoload
と
phpspec.yml ファイル内
suites: acme_suites: namespace: Acme
phpspec 記述 Acme\Shipping