Sha256: f7fda37ae1ef567abd109817a02dcbbae79ee6746d1299fa63e9df13705ab8d3
Contents?: true
Size: 419 Bytes
Versions: 9
Compression:
Stored size: 419 Bytes
Contents
# frozen_string_literal: true require 'introspection_test_helper' describe GObjectIntrospection::IUnionInfo do let(:object_info) { get_introspection_data('GLib', 'Mutex') } describe '#find_method' do it 'finds a method by name string' do object_info.find_method('clear').wont_be_nil end it 'finds a method by name symbol' do object_info.find_method(:clear).wont_be_nil end end end
Version data entries
9 entries across 9 versions & 1 rubygems