Sha256: a5417215e2a56f12d351109db04a2bea5cdfd92893f2b5a746825da172a4552a
Contents?: true
Size: 558 Bytes
Versions: 6
Compression:
Stored size: 558 Bytes
Contents
require File.expand_path('test_helper.rb', File.dirname(__FILE__)) class GObjectTest < MiniTest::Spec context "The GirFFI::GObject helper module" do should "have type_init as a public method" do assert GirFFI::GObject.respond_to?('type_init') end should "not have g_type_init as a public method" do assert GirFFI::GObject.respond_to?('g_type_init') == false end end context "the type_init method" do should "not raise an error" do assert_nothing_raised do GirFFI::GObject.type_init end end end end
Version data entries
6 entries across 6 versions & 1 rubygems