Sha256: 0e269ce4ad2684d5b6c58fd13734aab93133712ee5cbf8b1702c354d264707d1
Contents?: true
Size: 1.53 KB
Versions: 10
Compression:
Stored size: 1.53 KB
Contents
require File.join(File.dirname(__FILE__), '..', 'test_helper') class BookWithXmlInitialize < BookWithDepth attr_reader :created_at, :creator def initialize(created_at, creator = "Unknown") @created_at = created_at @creator = creator end alias_method :xml_initialize, :initialize end class TestXMLInitialize < Test::Unit::TestCase def test_xml_construct_not_in_use assert Measurement.xml_construction_args_without_deprecation.empty? end def test_initialize_is_run m = Measurement.from_xml('<measurement units="hundredths-meters">1130</measurement>') assert_equal 11.3, m.value assert_equal 'meters', m.units end def test_initialize_is_run_for_nested_type b = BookWithDepth.from_xml(fixture(:book_with_depth)) assert_equal Measurement.new(11.3, 'meters'), b.depth end def test_initialize_is_run_for_nested_type_with_inheritance b = InheritedBookWithDepth.from_xml(fixture(:book_with_depth)) assert_equal Measurement.new(11.3, 'meters'), b.depth end def test_initialize_fails_on_missing_required_arg assert_raises(ArgumentError) do b = BookWithXmlInitialize.from_xml(fixture(:book_with_depth)) end end def test_initialize_with_extra_args now = Time.now b = BookWithXmlInitialize.from_xml(fixture(:book_with_depth), now) assert_equal now, b.created_at assert_equal "Unknown", b.creator b = BookWithXmlInitialize.from_xml(fixture(:book_with_depth), Time.now, "Joe Librarian") assert now < b.created_at assert_equal "Joe Librarian", b.creator end end
Version data entries
10 entries across 10 versions & 2 rubygems