Skip to content

Commit

Permalink
Updating simplecov gem
Browse files Browse the repository at this point in the history
  • Loading branch information
uxxman committed Jul 15, 2023
1 parent 9bb6317 commit 9d1aa69
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
11 changes: 6 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,12 @@ GEM
rubocop-capybara (~> 2.17)
rubocop-factory_bot (~> 2.22)
ruby-progressbar (1.13.0)
simplecov (0.17.1)
simplecov (0.22.0)
docile (~> 1.1)
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)
thor (1.2.2)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
Expand All @@ -107,7 +108,7 @@ DEPENDENCIES
rubocop-rake (~> 0.6.0)
rubocop-rspec (~> 2.12, >= 2.12.1)
service_record!
simplecov (~> 0.17.1)
simplecov (~> 0.22.0)

BUNDLED WITH
2.3.4
2 changes: 1 addition & 1 deletion service_record.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'rubocop-rails', '~> 2.15', '>= 2.15.2'
spec.add_development_dependency 'rubocop-rake', '~> 0.6.0'
spec.add_development_dependency 'rubocop-rspec', '~> 2.12', '>= 2.12.1'
spec.add_development_dependency 'simplecov', '~> 0.17.1'
spec.add_development_dependency 'simplecov', '~> 0.22.0'
end
2 changes: 1 addition & 1 deletion spec/auth_service_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
let(:response) { described_class.perform(email: AuthService::EMAIL, password: AuthService::PASSWORD) }

it 'has no errors' do
expect(response.errors.empty).to be(true)
expect(response.errors.empty?).to be(true)
end

it 'returns true for success?' do
Expand Down

0 comments on commit 9d1aa69

Please sign in to comment.