blob: bc4d7276140122c66f8a3b44d589b8d81d9a8047 (
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
37
38
39
40
|
require 'testing_env'
require 'requirements/x11_dependency'
class X11DependencyTests < Homebrew::TestCase
def test_eql_instances_are_eql
x = X11Dependency.new
y = X11Dependency.new
assert_eql x, y
assert_equal x.hash, y.hash
end
def test_not_eql_when_hashes_differ
x = X11Dependency.new("foo")
y = X11Dependency.new
refute_eql x, y
refute_equal x.hash, y.hash
end
def test_different_min_version
x = X11Dependency.new
y = X11Dependency.new("x11", %w[2.5])
refute_eql x, y
end
def test_x_env
x = X11Dependency.new
x.stubs(:satisfied?).returns(true)
ENV.expects(:x11)
x.modify_build_environment
end
def test_satisfied
MacOS::XQuartz.stubs(:version).returns("2.7.5")
MacOS::XQuartz.stubs(:installed?).returns(true)
assert_predicate X11Dependency.new, :satisfied?
MacOS::XQuartz.stubs(:installed?).returns(false)
refute_predicate X11Dependency.new, :satisfied?
end
end
|