File Manager

Path: /opt/chef.upgrade/embedded/lib/ruby/gems/2.3.0/gems/simplecov-0.13.0/spec/fixtures/

Viewing File: sample.rb

# Foo class
class Foo
  def initialize
    @foo = "baz"
  end

  def bar
    @foo
  end

  #:nocov:
  def skipped
    @foo * 2
  end
  #:nocov:
end