Last active
April 1, 2022 00:05
-
-
Save ignacio-chiazzo/2ecc14c856ae341b679202afd7f52bf6 to your computer and use it in GitHub Desktop.
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
class B < Minitest::Test | |
test "test 1" do | |
#.... # runs twice | |
end | |
class A < B | |
test "test 2" do | |
#.... | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment