我正在查看Datamapper目录并打开dm-core/tasks/dm.rb
。一般来说,这个文件到底发生了什么?对我来说,它看起来像希腊语。特别是关于“规格”的事情 - 这些是为了什么?这类似于定义项目应包含的软件规范吗?
require 'spec/rake/spectask'
require 'spec/rake/verify_rcov'
task :default => 'spec'
RCov::VerifyTask.new(:verify_rcov => :rcov) do |t|
t.threshold = 87.7 # Make sure you have rcov 0.7 or higher!
end
def run_spec(name, files, rcov)
Spec::Rake::SpecTask.new(name) do |t|
t.spec_opts << '--options' << ROOT + 'spec/spec.opts'
t.spec_files = Pathname.glob(ENV['FILES'] || files.to_s).map { |f| f.to_s }
t.rcov = rcov
t.rcov_opts << '--exclude' << 'spec'
t.rcov_opts << '--text-summary'
#t.rcov_opts << '--sort' << 'coverage' << '--sort-reverse'
#t.rcov_opts << '--only-uncovered'
#t.rcov_opts << '--profile'
end
end
public_specs = ROOT + 'spec/public/**/*_spec.rb'
semipublic_specs = ROOT + 'spec/semipublic/**/*_spec.rb'
all_specs = ROOT + 'spec/**/*_spec.rb'
desc 'Run all specifications'
run_spec('spec', all_specs, false)
desc 'Run all specifications with rcov'
run_spec('rcov', all_specs, true)
namespace :spec do
desc 'Run public specifications'
run_spec('public', public_specs, false)
desc 'Run semipublic specifications'
run_spec('semipublic', semipublic_specs, false)
end
namespace :rcov do
desc 'Run public specifications with rcov'
run_spec('public', public_specs, true)
desc 'Run semipublic specifications with rcov'
run_spec('semipublic', semipublic_specs, true)
end
desc 'Run all comparisons with ActiveRecord'
task :perf do
sh ROOT + 'script/performance.rb'
end
desc 'Profile DataMapper'
task :profile do
sh ROOT + 'script/profile.rb'
end
答案 0 :(得分:4)
你实际拥有的是一个调用rspec测试的rake文件。实际规格将在名为foo_spec.rb的文件中,并且更具可读性。
RSpec是行为驱动开发(BDD)的框架,可用作替代Ruby中传统的单元测试框架。
使用BDD而不是传统的单元测试的真正好处之一是具有可读性测试,其完全按照规范读取。
我经常与非技术客户坐在一起阅读规范源文件,看看它们是否有意义,或者是否缺少任何规则。在几乎所有情况下,他们都可以聪明地跟踪它们。
这是一个愚蠢的简单例子:
describe User do
describe "basic generation" do
before(:each) do
@user=User.create :first_name=>"Bob, :last_name=>"Smith"
end
it "should be valid" do
@user.should be_valid
end
it "should have a full name" do
@user.full_name.should=="Bob Smith"
end
end
end
正如另一张海报所说,请转到RSpec web site获取更多信息。
答案 1 :(得分:0)