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.
8 lines
169 B
Ruby
8 lines
169 B
Ruby
class TestLanguage < Test::Unit::TestCase
|
|||
include PangoTestUtils
|
|||
|
|||
def test_default
|
|||
assert_match(/\A[a-z]{2}-[a-z]{2}\z/, Pango::Language.default.to_s)
|
|||
end
|
|||
end
|