blob: 8f5104f36acb9585654761d868e5365c854d80ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
require 'testing_env'
require 'test/testball'
# We temporarily redefine bottles_supported? because the
# following tests assume it is true, but other tests may
# expect the real value.
module MacOS extend self
def bottles_are_supported
alias :old_bottles_supported? :bottles_supported?
def bottles_supported?; true end
yield
def bottles_supported?; old_bottles_supported? end
end
end
class BottleTests < Test::Unit::TestCase
def test_bottle_spec_selection
MacOS.bottles_are_supported do
f = SnowLeopardBottleSpecTestBall.new
assert_equal case MacOS.cat
when :snowleopard then f.bottle
else f.stable
end, f.active_spec
f = LionBottleSpecTestBall.new
assert_equal case MacOS.cat
when :lion then f.bottle
else f.stable
end, f.active_spec
f = AllCatsBottleSpecTestBall.new
assert_equal f.bottle, f.active_spec
end
end
end
|