cucumber, rspec and rails 3 raises error option: --profile

后端 未结 2 368
生来不讨喜
生来不讨喜 2021-01-22 19:51

I used cucumber for the first time with rails 3.

Gemfile

group :test do
 gem \"rspec\"
 gem \"rspec-rails\"
 gem \"database_cleaner\"
 gem \"spork\"
 gem         


        
相关标签:
2条回答
  • 2021-01-22 20:03

    Try using cucumber features or simply cucumber instead of rake cucumber.

    0 讨论(0)
  • 2021-01-22 20:06

    Try with putting this file features/support/minitest_disable.rb the following code:

    require 'multi_test'
    MultiTest.disable_autorun
    

    and see this discussion in cucumber project

    0 讨论(0)
提交回复
热议问题