Sha256: 654896ce7d5e6b8875afc9aaed6e6fa57a30f6f2dddc4b31d4762280dd84084c
Contents?: true
Size: 1.42 KB
Versions: 2
Compression:
Stored size: 1.42 KB
Contents
# frozen_string_literal: true require 'base_test_helper' require 'ffi-gobject_introspection' GObjectIntrospection::IRepository.prepend_search_path File.join(File.dirname(__FILE__), 'lib') module LocalSharedLibrary def shared_library(namespace) case namespace when 'Everything', 'GIMarshallingTests', 'Regress', 'Utility', 'WarnLib' File.join(File.dirname(__FILE__), 'lib', "lib#{namespace.downcase}.so") else super end end end GObjectIntrospection::IRepository.prepend LocalSharedLibrary module IntrospectionTestExtensions module_function def get_introspection_data(namespace, name) gir = GObjectIntrospection::IRepository.default gir.require namespace, nil gir.find_by_name namespace, name end def get_field_introspection_data(namespace, klass, name) get_introspection_data(namespace, klass).find_field name end def get_method_introspection_data(namespace, klass, name) get_introspection_data(namespace, klass).find_method name end def get_property_introspection_data(namespace, klass, name) get_introspection_data(namespace, klass).find_property name end def get_signal_introspection_data(namespace, klass, name) get_introspection_data(namespace, klass).find_signal name end def get_vfunc_introspection_data(namespace, klass, name) get_introspection_data(namespace, klass).find_vfunc name end end Minitest::Test.send :include, IntrospectionTestExtensions
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gir_ffi-0.11.1 | test/introspection_test_helper.rb |
gir_ffi-0.11.0 | test/introspection_test_helper.rb |