Sha256: 0c80c9ac851ff257ea255bf623a25cede73fcb37a7a5c75be3cc5b02ef9a7053
Contents?: true
Size: 598 Bytes
Versions: 9
Compression:
Stored size: 598 Bytes
Contents
# frozen_string_literal: true require 'introspection_test_helper' describe GObjectIntrospection::IInterfaceInfo do let(:object_info) { get_introspection_data('GObject', 'TypePlugin') } describe '#find_method' do it 'finds a method by name string' do object_info.find_method('complete_interface_info').wont_be_nil end it 'finds a method by name symbol' do object_info.find_method(:complete_interface_info).wont_be_nil end end describe '#type_name' do it 'returns the correct name' do object_info.type_name.must_equal 'GTypePlugin' end end end
Version data entries
9 entries across 9 versions & 1 rubygems