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.
14 lines
303 B
Ruby
14 lines
303 B
Ruby
# -*- coding: utf-8 -*-
|
|||
|
|||
class TestGLibWin32 < Test::Unit::TestCase
|
|||
include GLibTestUtils
|
|||
|
|||
def test_get_package_install_directory_of_module
|
|||
only_win32
|
|||
only_glib_version(2, 16, 0)
|
|||
|
|||
assert_equal("FIXME",
|
|||
GLib::Win32.get_package_installation_directory_of_module)
|
|||
end
|
|||
end
|