aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBob W. Hogg2016-09-18 12:25:29 -0400
committerBob W. Hogg2016-09-22 08:31:50 -0400
commit25b6c0c23694a53176720a6c4330c6730707aaa7 (patch)
treea416e6a19e4ab09ddc3009b27abfac69f3c75480 /Library
parent2a82770f70151c027c151a817f7b9e7e4bb9463c (diff)
downloadbrew-25b6c0c23694a53176720a6c4330c6730707aaa7.tar.bz2
Remove unnecessary skips
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/test/test_os_mac_dependency_collector.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/Library/Homebrew/test/test_os_mac_dependency_collector.rb b/Library/Homebrew/test/test_os_mac_dependency_collector.rb
index ff3e43c5c..7d95f3eba 100644
--- a/Library/Homebrew/test/test_os_mac_dependency_collector.rb
+++ b/Library/Homebrew/test/test_os_mac_dependency_collector.rb
@@ -21,14 +21,12 @@ class OSMacDependencyCollectorTests < Homebrew::TestCase
end
def test_ant_dep_mavericks_or_newer
- skip "Only for Mac OS" unless OS.mac?
MacOS.stubs(:version).returns(MacOS::Version.new("10.9"))
@d.add :ant => :build
assert_equal find_dependency("ant"), Dependency.new("ant", [:build])
end
def test_ant_dep_pre_mavericks
- skip "Only for Mac OS" unless OS.mac?
MacOS.stubs(:version).returns(MacOS::Version.new("10.7"))
@d.add :ant => :build
assert_nil find_dependency("ant")