Sha256: 0657daa43c30fdc816b717c2c2f303c7efed5b64fde838d3d717709e82eaca91
Contents?: true
Size: 1.4 KB
Versions: 4
Compression:
Stored size: 1.4 KB
Contents
require File.expand_path('../gir_ffi_test_helper.rb', File.dirname(__FILE__)) describe GirFFI::Builder::Type::Object do describe "#find_property" do it "finds a property specified on the class itself" do builder = GirFFI::Builder::Type::Object.new( get_introspection_data('Regress', 'TestObj')) prop = builder.find_property("int") assert_equal "int", prop.name end it "finds a property specified on the parent class" do builder = GirFFI::Builder::Type::Object.new( get_introspection_data('Regress', 'TestSubObj')) prop = builder.find_property("int") assert_equal "int", prop.name end it "raises an error if the property is not found" do builder = GirFFI::Builder::Type::Object.new( get_introspection_data('Regress', 'TestSubObj')) assert_raises RuntimeError do builder.find_property("this-property-does-not-exist") end end end describe "#function_definition" do before do @cbuilder = GirFFI::Builder::Type::Object.new get_introspection_data('Regress', 'TestObj') @go = get_method_introspection_data 'Regress', 'TestObj', 'instance_method' end it "delegates definition to Builder::Function" do code = @cbuilder.send :function_definition, @go expected = GirFFI::Builder::Function.new(@go, Regress::Lib).generate assert_equal cws(expected), cws(code) end end end
Version data entries
4 entries across 4 versions & 1 rubygems