simplecov-ruby/simplecov

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class D
  def case(arg)
    case arg
    when 0...23
      :foo
    when 40..50
      :bar
    when Integer
      :baz
    else
      :nope
    end
  end
end