rspec-core icon indicating copy to clipboard operation
rspec-core copied to clipboard

RSpec runner and formatters

Results 75 rspec-core issues
Sort by recently updated
recently updated
newest added

In code which needs to test fork and other process related functions, it should be possible to disable the interrupt handler, which interferes with code which has it's own signal...

`.rspec-local` allow individual developers to set options that override the common project options in `.rspec` (see [_Read command line configuration options from files_](https://relishapp.com/rspec/rspec-core/v/3-8/docs/configuration/read-command-line-configuration-options-from-files)). It is clear how to add options...

``` Run options: include {:full_description=>/AGENT::Services::CLI\ �첽������\��python������Ŀ����/} from D:/tools/atr/sft_tool/mingw32/lib/ruby/gems/2.3.0/gems/rspec-core-3.8.1/lib/rspec/core/world.rb:182:in `announce_filters' from D:/tools/atr/sft_tool/mingw32/lib/ruby/gems/2.3.0/gems/rspec-core-3.8.1/lib/rspec/core/runner.rb:99:in `setup' from D:/tools/atr/sft_tool/mingw32/lib/ruby/gems/2.3.0/gems/rspec-core-3.8.1/lib/rspec/core/runner.rb:86:in `run' from D:/tools/atr/sft_tool/mingw32/lib/ruby/gems/2.3.0/gems/rspec-core-3.8.1/lib/rspec/core/runner.rb:71:in `run' from D:/tools/atr/sft_tool/mingw32/lib/ruby/gems/2.3.0/gems/rspec-core-3.8.1/lib/rspec/core/runner.rb:45:in `invoke' from D:/tools/atr/sft_tool/mingw32/lib/ruby/gems/2.3.0/gems/rspec-core-3.8.1/exe/rspec:4:in `' from D:/tools/atr/sft_tool/mingw32/bin/rspec:23:in `load' from D:/tools/atr/sft_tool/mingw32/bin/rspec:23:in `'...

### Subject of the issue While running bundler tests in ruby/ruby (currently done with Azure Pipelines running an Ubuntu job and a MacOS job), the following error appears: ``` All...

### Subject of the issue Methods that were injected via `config.extend(...)` are not defined when called within shared contexts. ### Your environment * Ruby version: 2.6 * rspec-core version: 3.9.0...

Bug

Failure/Error occurs when magic comment of test code is set to CP932 in rspec-core-3.7.1, and Encoding::CompatibilityError occurs if the error content contains Japanese. If you change the magic comment of...

Sorry if this already exists, but I honestly wasn't sure how to search for it. I was actually a bit surprised when I went to create this issue because the...

Hi there. I just noticed something odd with the interaction between the focus tag and `--only-failures`. My rspec config is set up like so: ```ruby RSpec.configure do |config| config.filter_run_when_matching :focus...

Gemfile: gem 'rspec', '= 3.0.0' spec/described_class_spec.rb: ``` describe Array do describe 'a string' do it { expect(described_class).to eq(Array) } end describe :a_symbol do it { expect(described_class).to eq(Array) } end describe...

Feature

### Light documentation for Formatters At the moment [the documentation for Formatters](https://relishapp.com/rspec/rspec-core/v/3-8/docs/formatters/custom-formatters) is succint. We should provide more documentation for this part of RSpec. A good example is this blog...

Good first issue