Sha256: e78bec77da930fdc160b4c2ddea806f2c646284bc95047f1d257acbbc705076a
Contents?: true
Size: 582 Bytes
Versions: 16
Compression:
Stored size: 582 Bytes
Contents
require_relative 'helper' class TestVersion < Sidetiq::TestCase def test_major assert_instance_of Fixnum, Sidetiq::VERSION::MAJOR end def test_minor assert_instance_of Fixnum, Sidetiq::VERSION::MINOR end def test_patch assert_instance_of Fixnum, Sidetiq::VERSION::PATCH end def test_string assert_equal Sidetiq::VERSION::STRING, [Sidetiq::VERSION::MAJOR, Sidetiq::VERSION::MINOR, Sidetiq::VERSION::PATCH, Sidetiq::VERSION::SUFFIX].compact.join('.') end end
Version data entries
16 entries across 16 versions & 1 rubygems