Sha256: 61fd509d9a3377cc568f5770debb83e10e06c659c66f83d31155cc64009d14e2
Contents?: true
Size: 564 Bytes
Versions: 9
Compression:
Stored size: 564 Bytes
Contents
# frozen_string_literal: true require 'introspection_test_helper' describe GObjectIntrospection::IStructInfo do let(:object_info) { get_introspection_data('GObject', 'Closure') } describe '#find_method' do it 'finds a method by name string' do object_info.find_method('new_simple').wont_be_nil end it 'finds a method by name symbol' do object_info.find_method(:new_simple).wont_be_nil end end describe '#type_name' do it 'returns the correct name' do object_info.type_name.must_equal 'GClosure' end end end
Version data entries
9 entries across 9 versions & 1 rubygems