Sha256: 222d9754f95f5f50572cbed876020205b18b8c257b6354495793613771207df3
Contents?: true
Size: 989 Bytes
Versions: 7
Compression:
Stored size: 989 Bytes
Contents
require 'gir_ffi_test_helper' require 'ffi-gobject' describe GObject::Object do describe "#get_property" do it "is overridden to have arity 1" do assert_equal 1, GObject::Object.instance_method("get_property").arity end end describe "automatic accessor methods" do class AccessorTest < GObject::Object def get_x @x end def set_x(val) @x = val end end subject { AccessorTest.new GObject::TYPE_OBJECT, nil } it 'reads x by calling get_x' do subject.set_x(1) assert_equal 1, subject.x end it 'writes x by calling set_x' do subject.x = 2 assert_equal 2, subject.x end end describe "#signal_connect" do subject { GObject::Object.new GObject::TYPE_OBJECT, nil } it 'delegates to GObject' do mock(GObject).signal_connect(subject, 'some-event') subject.signal_connect('some-event') do nothing end RR.verify end end end
Version data entries
7 entries across 7 versions & 1 rubygems