module GObjectIntrospectionTestUtils

Public Instance Methods

require_version(major, minor, micro) click to toggle source
# File gobject-introspection/test/gobject-introspection-test-utils.rb, line 21
def require_version(major, minor, micro)
  if (GObjectIntrospection::BUILD_VERSION <=> [major, minor, micro]) < 0
    omit("require GObjectIntrospection #{major}.#{minor}.#{micro} or later.")
  end
end