Sha256: 86d5ca7ed6d03f982492ad490eb3345fd4381653808feb1edce8b7b2a1597aee
Contents?: true
Size: 926 Bytes
Versions: 4
Compression:
Stored size: 926 Bytes
Contents
# frozen_string_literal: true require "gir_ffi_test_helper" GirFFI.setup :GIMarshallingTests describe GirFFI::Builders::UnintrospectableBoxedBuilder do let(:instance) { GIMarshallingTests::PropertiesObject.new } let(:property) { instance.object_class.find_property "some-boxed-glist" } let(:gtype) { property.value_type } let(:info) { GirFFI::UnintrospectableBoxedInfo.new(gtype) } let(:bldr) { GirFFI::Builders::UnintrospectableBoxedBuilder.new(info) } let(:boxed_class) { bldr.build_class } it "builds a class" do _(boxed_class).must_be_instance_of Class end it "builds a class derived from GirFFI::BoxedBase" do _(boxed_class.superclass).must_equal GirFFI::BoxedBase end it "returns the same class when built again" do other_bldr = GirFFI::Builders::UnintrospectableBoxedBuilder.new(info) other_class = other_bldr.build_class _(other_class).must_equal boxed_class end end
Version data entries
4 entries across 4 versions & 1 rubygems