1
0
Fork 0
mirror of https://github.com/endofunky/sidetiq.git synced 2022-11-09 13:53:30 -05:00

Add extra test for SubclassTracking.

This commit is contained in:
Tobias Svensson 2014-09-24 09:48:58 +01:00
parent 5f494cc1e6
commit 4ab7dd5ce4

View file

@ -1,7 +1,10 @@
require_relative 'helper' require_relative 'helper'
class TestSubclassTracking < Sidetiq::TestCase class TestSubclassTracking < Sidetiq::TestCase
class Foo class Base
end
class Foo < Base
extend Sidetiq::SubclassTracking extend Sidetiq::SubclassTracking
end end