配置环境
- add to Gemfile:
1
2
3
4
5
6
7
8# Gemfile:
gem 'rspec-rails', '~> 3.5.2'
然后运行:
$ bundle exec rails generate rspec:install
记得要把生成的.rspec 文件做个修改,删掉
# .rspec file:
--color
# NO --warning, --require spec_helper
- 下面是测试lib文件的一个例子: make sure your have this:
config/application.rb
config.autoload_paths += %W(#{config.root}/lib)
test a file in lib folder:
1 | require 'rails_helper' # 这句话极度重要. |
测试文件示例
1 | require 'rails_helper' |
测试:
bundle exec rspec 文件名