Sha256: db714a4072b9c9e34136b763914e61839419805f4daca5a60bde372d1621c543
Contents?: true
Size: 672 Bytes
Versions: 13
Compression:
Stored size: 672 Bytes
Contents
module Shoulda module Matchers module Integrations module TestFrameworks # @private class ActiveSupportTestCase Integrations.register_test_framework(self, :active_support_test_case) def validate! end def include(*modules, **_options) test_case_class.include(*modules) end def n_unit? true end def present? true end protected attr_reader :configuration private def test_case_class ActiveSupport::TestCase end end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems