I just ran into this issue while reading the same book. The fix for me was installing guard-phpunit2 since guard-phpunit is no longer active.
$ gem install guard
$ gem install guard-phpunit2
$ gem install terminal-notifier-guard
And my Guard file looks like this:
guard 'phpunit2', :cli => '--colors', :tests_path => 'app/tests', :command => "./vendor/bin/phpunit" do
watch(%r{^.+Test\.php$})
end
Hopefully others will find this useful.
enwemasor1995 liked this reply
did you find a solution for this problem as I am experiencing the same issues?
iovino: Thanks for the solution. Works for me ... except terminal-notifier doesn't seem to work.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community