Sha256: f1d4fe77f18fdba1fb59fd051240272894575262a6679aa17f8f1afb67c3c396
Contents?: true
Size: 425 Bytes
Versions: 4
Compression:
Stored size: 425 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
4 entries across 4 versions & 1 rubygems