标签: ruby rspec
我试图使用rspec spec.rb
rspec spec.rb
但它给了我以下警告:
Deprecation Warnings: Requiring `rspec/autorun` when running RSpec via the `rspec` command is deprecated.
我找到issue并取消此操作我需要从require 'rspec/autorun'删除spec_helper.rb
require 'rspec/autorun'
spec_helper.rb
因为我没有使用Rails,所以没有这样的文件,我应该如何解决这个问题呢?