Sha256: e9a0bfc28b7e45e9fb89d6d385a703ae838c965b37604096f58c869c68a1582d
Contents?: true
Size: 258 Bytes
Versions: 6
Compression:
Stored size: 258 Bytes
Contents
require 'test_helper' class SexySingletonTest < Test::Unit::TestCase class Single include Tins::SexySingleton def foo :foo end end def test_foo assert_equal :foo, Single.instance.foo assert_equal :foo, Single.foo end end
Version data entries
6 entries across 6 versions & 1 rubygems