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
239 B
Ruby
8 lines
239 B
Ruby
# -*- coding: utf-8 -*-
|
|||
|
|||
class TestDataInputStream < Test::Unit::TestCase
|
|||
def test_byte_order_property
|
|||
assert_equal GLib::DATA_STREAM_BYTE_ORDER_BIG_ENDIAN, GLib::DataInputStream.new(GLib::MemoryInputStream.new).byte_order
|
|||
end
|
|||
end
|