File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ Bug Fixes:
5
5
6
6
* Fix another load order issued which causes an undefined method ` fixture_path ` error
7
7
when loading rspec-rails after a spec has been created. (Nikki Murray, #1430 )
8
+ * Removed incorrect surrounding whitespace in the rspec-rails backtrace
9
+ exclusion pattern for its own ` lib ` code. (Jam Black, #1439 )
8
10
9
11
### 3.3.3 / 2015-07-15
10
12
[ Full Changelog] ( http://github.com/rspec/rspec-rails/compare/v3.3.2...v3.3.3 )
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ class Configuration
39
39
# @private
40
40
def self . initialize_configuration ( config )
41
41
config . backtrace_exclusion_patterns << /vendor\/ /
42
- config . backtrace_exclusion_patterns << %r{ lib/rspec/rails }
42
+ config . backtrace_exclusion_patterns << %r{lib/rspec/rails}
43
43
44
44
# controller settings
45
45
config . add_setting :infer_base_class_for_anonymous_controllers , :default => true
Original file line number Diff line number Diff line change 18
18
it "adds 'lib/rspec/rails' to the backtrace exclusions" do
19
19
expect (
20
20
config . backtrace_exclusion_patterns
21
- ) . to include ( %r{ lib/rspec/rails } )
21
+ ) . to include ( %r{lib/rspec/rails} )
22
22
end
23
23
24
24
shared_examples_for "adds setting" do |accessor , opts |
You can’t perform that action at this time.
0 commit comments