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
210 B
Ruby
9 lines
210 B
Ruby
# -*- coding: utf-8 -*-
|
|||
|
|||
class TestFileEnumerator < Test::Unit::TestCase
|
|||
def test_responds_to_properties
|
|||
a = GLib::File.new_for_path('/').enumerate_children
|
|||
assert a.respond_to?(:container)
|
|||
end
|
|||
end
|