Rails 3.1.1 and Cucumber - Error

后端 未结 2 1353
不知归路
不知归路 2021-02-19 00:58

I have git a little problem running Cucumber. When using cucumber I get the following results:

    Yanniss-MacBook:rechnungen yannis$ cucumber
Using the default         


        
相关标签:
2条回答
  • 2021-02-19 01:36

    I'm new on Ruby on Rails. I had the same problem and what I did to solve this was: - I put in Gemfile the following: gem 'minitest'

    Heber

    0 讨论(0)
  • 2021-02-19 01:47

    I fixed this by applying a Pessimistic Version Constraint to turn in my Gemfile:

    group :test do
      gem 'turn', '< 0.8.3'
    end
    

    Update: The version constraint should no longer be necessary, according to a maintainer:

    Technically .. MiniTest is an optional dependency .. It would not normally be an issue .. but the MiniTest shipped with Ruby is well behind the latest version of MiniTest, which Turn needs. Since almost everyone has moved to MiniTest now, I will simply add it as a dependency.

    I haven't verified the above because I use rspec now.

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