1
0
Fork 0
mirror of https://github.com/endofunky/sidetiq.git synced 2022-11-09 13:53:30 -05:00
endofunky--sidetiq/test/test_version.rb

23 lines
582 B
Ruby
Raw Normal View History

2013-01-31 12:42:19 -05:00
require_relative 'helper'
class TestVersion < Sidetiq::TestCase
2013-01-31 12:42:19 -05:00
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,
2013-09-16 08:04:13 -04:00
Sidetiq::VERSION::MINOR, Sidetiq::VERSION::PATCH,
Sidetiq::VERSION::SUFFIX].compact.join('.')
2013-01-31 12:42:19 -05:00
end
end