Sha256: 71a80f182404b51a1e2b95ac5bc4c269767e94d03c8e18704e1bef7a720aa2b0

Contents?: true

Size: 408 Bytes

Versions: 3

Compression:

Stored size: 408 Bytes

Contents

require 'minitest/autorun'
require 'xkeys'

class TestXK < MiniTest::Unit::TestCase

    def test_hash
	a = [].extend XKeys::Hash
	assert_kind_of(XKeys::Get, a, 'Hash => Get')
	assert_kind_of(XKeys::Set_Hash, a, 'Hash => Set_Hash')
    end

    def test_auto
	a = [].extend XKeys::Auto
	assert_kind_of(XKeys::Get, a, 'Auto => Get')
	assert_kind_of(XKeys::Set_Auto, a, 'Auto => Set_Auto')
    end

end

# END

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
xkeys-1.0.1 test/04mod_combos.rb
xkeys-0.0.2 test/04mod_combos.rb
xkeys-0.0.1 test/04mod_combos.rb