Sha256: 9f472e11b6247e570712068f2ccbcb7ea8d37bca675648769fc43c49e8dea78f
Contents?: true
Size: 1.18 KB
Versions: 7
Compression:
Stored size: 1.18 KB
Contents
require 'gir_ffi_test_helper' GirFFI.setup :GIMarshallingTests describe GirFFI::Builder::Type::UserDefined do describe "with type info containing one property" do before do @klass = Class.new GIMarshallingTests::OverridesObject Object.const_set "DerivedC#{Sequence.next}", @klass @info = GirFFI::UserDefinedTypeInfo.new @klass do install_property GObject.param_spec_int("foo", "foo bar", "The Foo Bar Property", 10, 20, 15, 3) end @builder = GirFFI::Builder::Type::UserDefined.new @info @builder.build_class end it "registers a type that is bigger than the parent" do gtype = @klass.get_gtype q = GObject.type_query gtype q.instance_size.must_be :>, GIMarshallingTests::OverridesObject::Struct.size end it "gives the types Struct the fields :parent and :foo" do @klass::Struct.members.must_equal [:parent, :foo] end it "creates accessor functions for the property" do obj = @klass.new obj.foo = 13 obj.foo.must_equal 13 end end end
Version data entries
7 entries across 7 versions & 1 rubygems