Sha256: cb8198b4c931000bcc1a41f4fd7d05eb73d0f952267d8306262aa50220c77c60
Contents?: true
Size: 1.59 KB
Versions: 4
Compression:
Stored size: 1.59 KB
Contents
require File.expand_path('../test_helper.rb', File.dirname(__FILE__)) describe GObjectIntrospection::IRepository do describe "an instance" do should "not be created by calling new()" do assert_raises NoMethodError do GObjectIntrospection::IRepository.new end end should "be created by calling default()" do gir = GObjectIntrospection::IRepository.default assert_kind_of GObjectIntrospection::IRepository, gir end should "be a singleton" do gir = GObjectIntrospection::IRepository.default gir2 = GObjectIntrospection::IRepository.default assert_equal gir, gir2 end end describe "#namespace" do should "raise an error if the namespace doesn't exist" do assert_raises RuntimeError do GObjectIntrospection::IRepository.default.require 'VeryUnlikelyGObjectNamespaceName', nil end end should "allow version to be nil" do assert_nothing_raised do GObjectIntrospection::IRepository.default.require 'GObject', nil end end should "allow version to be left out" do assert_nothing_raised do GObjectIntrospection::IRepository.default.require 'GObject' end end end describe "enumerating the infos for GObject" do setup do @gir = GObjectIntrospection::IRepository.default @gir.require 'GObject', "2.0" end should "yield more than one object" do assert_operator @gir.n_infos('GObject'), :>, 0 end should "yield IBaseInfo objects" do assert_kind_of GObjectIntrospection::IBaseInfo, @gir.info('GObject', 0) end end end
Version data entries
4 entries across 4 versions & 1 rubygems