simplecov-ruby/simplecov

View on GitHub
test_projects/parallel_tests/lib/c.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class C
  def guard(arg)
    return if arg == 42

    :super
  end
end