Sha256: 26d16b1c97ec6e373dc66e3aa4f2d4645cd6f61168c85a83d80aa941d6644751
Contents?: true
Size: 1.16 KB
Versions: 4
Compression:
Stored size: 1.16 KB
Contents
# coding: utf-8 require 'test/unit/helper' class ThinReports::Core::Shape::Manager::TestFormat < MiniTest::Unit::TestCase include ThinReports::TestHelpers class TestFormat < ThinReports::Core::Shape::Manager::Format; end def test_identifier_should_return_the_same_as_object_id_when_id_is_not_given format = TestFormat.new({}) assert_equal format.identifier, format.object_id end def test_identifier_should_return_the_specified_id_when_id_is_given assert_equal TestFormat.new({}, :any_id).identifier, :any_id end def test_shapes_should_return_instance_of_OrderedHash assert_instance_of ThinReports::Core::OrderedHash, TestFormat.new({}).shapes end def test_find_shape_should_return_format_of_shape_when_shape_is_found format = TestFormat.new({}) do |f| f.shapes[:foo] = ThinReports::Core::Shape::TextBlock::Format.new('id' => 'foo', 'type' => 's-tblock') end assert_equal format.find_shape(:foo).id, 'foo' end def test_find_shape_should_return_nil_when_shape_is_not_found assert_nil TestFormat.new({}).find_shape(:unknown) end end
Version data entries
4 entries across 4 versions & 1 rubygems