-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
describe uses subclasses under the hood which causes the tests to run multiple times. See this example:
class Foo < ActiveSupport::TestCase
describe("something") do
test("foo") do
"my test"
end
end
describe("something else") do
test("bar") do
"something"
end
end
test("baz") do
"I will run 3 times"
end
endThe analyzer should detect multiple tests run by the describe.
Reactions are currently unavailable