0
我是Ruby on Rails編程的新手。我使用Rspec編寫單元測試用例。我無法在Heroku上運行測試用例。我能夠在本地主機上運行。有人可以給我解決方案,如何通過命令行在heroku上運行Rspec測試用例嗎?Heroku上的Rspec-Running測試用例
我用的命令 - heroku run bundle exec rspec --remote appname
我收到此錯誤信息
bundler: command not found: rspec
Install missing gem executables with `bundle install`.
的問題是,我已經安裝rspec-rails
和rspec gems
。 請幫我解決這個問題?
您不需要在生產環境中運行規格,規格可以在開發環境或測試環境中運行,而不是在生產服務器上運行。 – arieljuod