Sha256: 2a7b37578a6d98e5674e2d0ce2fd3658343c7e6ecc06d1ebaafcd26c554a9830
Contents?: true
Size: 1.72 KB
Versions: 50
Compression:
Stored size: 1.72 KB
Contents
# Copyright (C) 2018 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 TestGeglVersion < Test::Unit::TestCase test "STRING" do major = Gegl::Version::MAJOR minor = Gegl::Version::MINOR micro = Gegl::Version::MICRO assert_equal([major, minor, micro].join("."), Gegl::Version::STRING) end sub_test_case("#or_later?") do test "same" do assert_true(Gegl::Version.or_later?(Gegl::Version::MAJOR, Gegl::Version::MINOR, Gegl::Version::MICRO)) end test "later" do assert_true(Gegl::Version.or_later?(Gegl::Version::MAJOR, Gegl::Version::MINOR - 1, Gegl::Version::MICRO)) end test "earlier" do assert_false(Gegl::Version.or_later?(Gegl::Version::MAJOR, Gegl::Version::MINOR + 1, Gegl::Version::MICRO)) end end end
Version data entries
50 entries across 50 versions & 1 rubygems