是否有任何命令可用于为现有模型/控制器生成所有缺少的spec文件?我有一个项目有几个模型,这些模型是用spec文件生成的。
答案 0 :(得分:17)
在用于Rails 3的rspec-rails-2中,所有的rspec生成器都已被删除。
您可以通过运行rails模型生成器来解决此问题。您可以添加-s以跳过任何现有文件,并添加--migration = false以跳过创建迁移文件。
像这样:
rails generate model example -s --migration=false
答案 1 :(得分:7)
您可以运行生成器并忽略模型/迁移/夹具。
ruby script/generate rspec_model User --skip-migration --skip-fixture --skip
我一直在考虑写一些东西来做这件事,但其他人没有兴趣。
答案 2 :(得分:1)
如果丢失的规格数量相当少,您只需为缺少规格的每个组件运行rails generate
命令。
当出现冲突时,只需选择不覆盖原始文件。生成器将忽略现有文件并生成丢失的文件。
答案 3 :(得分:0)
https://gist.github.com/omenking/7774140
require 'fileutils'
namespace :spec do
def progress name, x, y
print "\r #{name}: #{x}/#{y} %6.2f%%" % [x.to_f/y * 100]
end
def generate_files name
kind = name.to_s.singularize
collection = Dir.glob Rails.root.join('app',name.to_s,'**','*').to_s
root = Rails.root.join('app',name.to_s).to_s<<'/'
ext = case name
when :controllers then '_controller.rb'
when :models then '.rb'
end
count = collection.count
collection.each_with_index do |i,index|
`rails g #{kind} #{$1} -s` if i =~ /#{root}(.+)#{ext}/
progress name, index, count
end
end
task generate_missing: :environment do
generate_files :controllers
generate_files :models
end
end
# if you dont want certian things generated than
# configure your generators in your application.rb eg.
#
# config.generators do |g|
# g.orm :active_record
# g.template_engine :haml
# g.stylesheets false
# g.javascripts false
# g.test_framework :rspec,
# fixture: false,
# fixture_replacement: nil
# end
#