Sha256: 69218b71764d63d4a496a419889406acb31367f58eb46438543515d71af7cff7

Contents?: true

Size: 1.72 KB

Versions: 137

Compression:

Stored size: 1.72 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 TestGioVersion < Test::Unit::TestCase
  include GioTestUtils

  test "STRING" do
    major = Gio::Version::MAJOR
    minor = Gio::Version::MINOR
    micro = Gio::Version::MICRO
    assert_equal([major, minor, micro].join("."),
                 Gio::Version::STRING)
  end

  sub_test_case("#or_later?") do
    test "same" do
      assert_true(Gio::Version.or_later?(Gio::Version::MAJOR,
                                         Gio::Version::MINOR,
                                         Gio::Version::MICRO))
    end

    test "later" do
      assert_true(Gio::Version.or_later?(Gio::Version::MAJOR,
                                         Gio::Version::MINOR - 1,
                                         Gio::Version::MICRO))
    end

    test "earlier" do
      assert_false(Gio::Version.or_later?(Gio::Version::MAJOR,
                                          Gio::Version::MINOR + 1,
                                          Gio::Version::MICRO))
    end
  end
end

Version data entries

137 entries across 129 versions & 2 rubygems

Version Path
gio2-4.2.7 test/test-version.rb
gio2-4.2.6 test/test-version.rb
gio2-4.2.5 test/test-version.rb
gio2-4.2.4 test/test-version.rb
gio2-4.2.3 test/test-version.rb
gio2-4.2.2 test/test-version.rb
gio2-4.2.1 test/test-version.rb
gio2-4.2.0 test/test-version.rb
gio2-4.1.9 test/test-version.rb
gio2-4.1.8 test/test-version.rb
gio2-4.1.7 test/test-version.rb
gio2-4.1.6 test/test-version.rb
gio2-4.1.5 test/test-version.rb
gio2-4.1.4 test/test-version.rb
gio2-4.1.3 test/test-version.rb
gio2-4.1.2 test/test-version.rb
gio2-4.1.1 test/test-version.rb
gio2-4.1.0 test/test-version.rb
gio2-4.0.9 test/test-version.rb
gio2-4.0.8 test/test-version.rb