2013-08-03 20:02:10 -07:00
|
|
|
require 'testing_env'
|
|
|
|
require 'bottle_version'
|
|
|
|
|
|
|
|
class BottleVersionParsingTests < Test::Unit::TestCase
|
|
|
|
def assert_version_detected expected, path
|
|
|
|
assert_equal expected, BottleVersion.parse(path).to_s
|
|
|
|
end
|
2013-08-03 20:03:40 -07:00
|
|
|
|
|
|
|
def test_perforce_style
|
|
|
|
assert_version_detected '2013.1.610569-x86_64',
|
|
|
|
'/usr/local/perforce-2013.1.610569-x86_64.mountain_lion.bottle.tar.gz'
|
|
|
|
end
|
2013-08-03 20:03:58 -07:00
|
|
|
|
|
|
|
def test_ssh_copy_id_style
|
|
|
|
assert_version_detected '6.2p2',
|
|
|
|
'/usr/local/ssh-copy-id-6.2p2.mountain_lion.bottle.tar.gz'
|
|
|
|
end
|
2013-10-11 08:40:08 +01:00
|
|
|
|
|
|
|
def test_icu4c_style
|
|
|
|
assert_version_detected '52.1',
|
2014-02-22 17:14:51 +00:00
|
|
|
'/usr/local/icu4c-52.1.mavericks.bottle.tar.gz'
|
2013-10-11 08:40:08 +01:00
|
|
|
end
|
2013-08-03 20:02:10 -07:00
|
|
|
end
|