Sha256: 5fe82e2e2bae6ad65f7a63a0a291d3e11c76ff913e5242d3968da579c0ca2f1a
Contents?: true
Size: 1.24 KB
Versions: 65
Compression:
Stored size: 1.24 KB
Contents
class TestLayout < Test::Unit::TestCase include PangoTestUtils def setup @font_map = Pango::CairoFontMap.default @context = @font_map.create_context @layout = Pango::Layout.new(@context) end def test_set_font_description assert_nil(@layout.font_description) @layout.font_description = "sans 14" assert_equal("sans 14", @layout.font_description.to_s) description = Pango::FontDescription.new("monospace") description.size = 10 * Pango::SCALE @layout.font_description = description assert_equal("monospace 10", @layout.font_description.to_s) end def test_height assert_equal(-1, @layout.height) end def test_set_height new_height = 29 * Pango::SCALE @layout.height = new_height assert_equal(new_height, @layout.height) end def test_ellipsized? assert_false(@layout.ellipsized?) end def test_baseline only_pango_version(1, 22, 0) assert_kind_of(Integer, @layout.baseline) end def test_set_text text = "こんにちは <b>World</b>!" @layout.text = text assert_equal(text, @layout.text) end def test_set_markup markup = "こんにちは <b>World</b>!" @layout.markup = markup assert_equal("こんにちは World!", @layout.text) end end
Version data entries
65 entries across 65 versions & 1 rubygems