This repository has been archived on 2021-09-15 . You can view files and clone it, but cannot push or open issues or pull requests.
10 lines
258 B
Ruby
10 lines
258 B
Ruby
class TestGdkPango < Test::Unit::TestCase
|
|||
include GtkTestUtils
|
|||
|
|||
def test_emboss_color_attribute
|
|||
only_gtk_version(2, 12, 0)
|
|||
color = Gdk::PangoAttrEmbossColor.new(Gdk::Color.parse("red"))
|
|||
assert_equal([65535, 0, 0], color.value.to_a)
|
|||
end
|
|||
end
|