Rails 4 and RSpec, the undefined `` assertions '' method in the routing specification

I have something that looks like the same problem as the undefined `assertions' method in the routing specification , but I am running Rails 4 and locked to a minimum value of 5.0 or higher. Therefore, the solution to use minitest 4.7 I can not work. Is there any work for this? Where can I report a bug?

+4
source share
1 answer

This issue is caused by the change in minitest 5.0 described here:

# https://github.com/seattlerb/minitest/issues/286

fixed with:

gem "rspec-rails", '~> 2.14.0.rc1' 

in gemfile.

+10
source

Source: https://habr.com/ru/post/1483888/


All Articles