Skip to content

Commit cadd3f9

Browse files
committed
Turn on Ruby Warnings on Test Suite
We were running our tests with warnings off, which meant we didn't notice a bunch of warnings we were emitting. Signed-off-by: Daniel Magliola <dmagliola@crystalgears.com>
1 parent 204d8c9 commit cadd3f9

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

.rspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--require spec_helper

spec/spec_helper.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
require 'simplecov'
44
require 'coveralls'
55

6+
RSpec.configure do |c|
7+
c.warnings = true
8+
end
9+
610
SimpleCov.formatter =
711
if ENV['CI']
812
Coveralls::SimpleCov::Formatter

0 commit comments

Comments
 (0)