-
Notifications
You must be signed in to change notification settings - Fork 553
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
62 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# frozen_string_literal: true | ||
|
||
module Minitest | ||
def self.plugin_simplecov_init(_options) | ||
Minitest.after_run do | ||
SimpleCov.custom_at_exit if SimpleCov.respond_to?(:custom_at_exit) | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
require "bundler/setup" | ||
|
||
begin | ||
require File.expand_path("simplecov_config", __dir__) | ||
rescue LoadError | ||
warn "No SimpleCov config file found!" | ||
end | ||
|
||
require "minitest/autorun" | ||
require "faked_project/some_class" | ||
|
||
class OtherTest < Minitest::Test | ||
def setup | ||
@instance = SomeClass.new("foo") | ||
end | ||
|
||
def test_reverse | ||
assert_equal "oof", @instance.reverse | ||
end | ||
|
||
def test_comparison | ||
assert @instance.compare_with("foo") | ||
end | ||
end |