如何检测rspec文件是否正在作为测试套件的一部分运行

时间:2019-02-27 05:40:36

标签: rspec

如何从规范文件内部检测文件是作为测试套件的一部分运行还是由其本身运行。如果要单独运行它,则我希望得到详细的输出,但是如果要作为许多文件中的一个文件,则希望取消输出。

例如,如果文件是'spec / models / my_model_spec.rb',我想告诉它们之间的区别

rspec spec

rspec spec/models/my_model_spec.rb

1 个答案:

答案 0 :(得分:1)

我在spec_helper.rb文件中发现此内容已被注释掉:

# Many RSpec users commonly either run the entire suite or an individual
# file, and it's useful to allow more verbose output when running an
# individual spec file.
if config.files_to_run.one?
  # Use the documentation formatter for detailed output,
  # unless a formatter has already been configured
  # (e.g. via a command-line flag).
  config.default_formatter = "doc"
end

将其移到RSpec.configure do |config|块中会产生您想要的结果。

编辑

RSpec提供了四种不同的输出格式化程序:进度,文档,HTML和JSON。最后两个是不言自明的。第一个是progress,是默认的格式化程序。它打印代表测试运行进度的点。绿点表示测试成功。

另一个格式化程序文档使用describecontextit描述来显示测试结果。因此,鉴于此RSpec结构:

describe Stack do
  describe '#push' do
    context 'when the stack is empty' do
      it 'increases the size of the stack by 1'
    end
    context 'when the stack is full' do
      it 'throws a stack overflow exception'
      it 'does not increase the size of the stack'
    end
  end
end

文档格式化程序将输出以下内容:

Stack
  #push
    when the stack is empty
      increases the size of the stack by 1
    when the stack is full
      throws a stack overflow exception
      does not increase the size of the stack

您可以在命令行上尝试各种格式化程序,如下所示:

rspec --format progress
rspec --format doc (or documentation)
rspec --format html
rspec --format json

上面的spec_helper中的配置代码使您可以在仅运行一个文件的情况下更改default_formatter。您始终可以通过在命令行上指定其他格式化程序来覆盖默认格式化程序。

RSpec源代码上的注释帮助我回答了这个问题:https://github.com/rspec/rspec-core/blob/7b6b9c3f2e2878213f97d6fc9e9eb23c323cfe1c/lib/rspec/core/formatters.rb