Sha256: 704bb1ae130e3fb92dcec21db22bcd8fa72ecde1a38ebe04598f2e13839b9869
Contents?: true
Size: 568 Bytes
Versions: 20
Compression:
Stored size: 568 Bytes
Contents
require File.expand_path('../../../helper', __FILE__) class Axiom::Types::PasswordTest < CC::Service::TestCase class TestConfiguration < CC::Service::Config attribute :password_attribute, Password attribute :string_attribute, String end def test_password_type_inference assert_equal( Axiom::Types::Password, TestConfiguration.attribute_set[:password_attribute].type ) end def test_string_type_inference assert_equal( Axiom::Types::String, TestConfiguration.attribute_set[:string_attribute].type ) end end
Version data entries
20 entries across 20 versions & 1 rubygems