我有宝石’rspec-rails’,’〜> 2.14.2’在我的宝石
文件.
从Rails 4.1
升级到Rails 4.2后,运行rspec时出现以下
错误:
Failure/Error: get 'api/...'
URI::InvalidURIError:
the scheme http does not accept registry part: www.example.com:80api (or bad hostname?)
什么修复?
添加/到路径修复了问题.
例如.:
get’api / …’=>得到’/ api / …’
post’api / …’=>帖子’/ api / …’
patch’api / …’=>补丁’/ api / …’
put’api / …’=>放’/ api / …’
等等
编辑:原因是here.
原文链接:https://www.f2er.com/ruby/267246.html