1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
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
|