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.
9 lines
197 B
Ruby
9 lines
197 B
Ruby
class TestGdkKeymap < Test::Unit::TestCase
|
|||
include GtkTestUtils
|
|||
|
|||
def test_have_bidi_layouts?
|
|||
only_gtk_version(2, 12, 0)
|
|||
assert_boolean(Gdk::Keymap.default.have_bidi_layouts?)
|
|||
end
|
|||
end
|