Sha256: 3fc0b01c36a7d54810dd57acaae72fa7520c1d8ac2c7817f11da3f75585c98c8
Contents?: true
Size: 1.74 KB
Versions: 134
Compression:
Stored size: 1.74 KB
Contents
# Copyright (C) 2015 Ruby-GNOME2 Project Team # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA class TestGLibVersion < Test::Unit::TestCase include GLibTestUtils test "STRING" do major = GLib::Version::MAJOR minor = GLib::Version::MINOR micro = GLib::Version::MICRO assert_equal([major, minor, micro].join("."), GLib::Version::STRING) end sub_test_case("#or_later?") do test "same" do assert_true(GLib::Version.or_later?(GLib::Version::MAJOR, GLib::Version::MINOR, GLib::Version::MICRO)) end test "later" do assert_true(GLib::Version.or_later?(GLib::Version::MAJOR, GLib::Version::MINOR - 1, GLib::Version::MICRO)) end test "earlier" do assert_false(GLib::Version.or_later?(GLib::Version::MAJOR, GLib::Version::MINOR + 1, GLib::Version::MICRO)) end end end
Version data entries
134 entries across 126 versions & 2 rubygems