diff options
Diffstat (limited to 'features/support/packages.rb')
-rw-r--r-- | features/support/packages.rb | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/features/support/packages.rb b/features/support/packages.rb deleted file mode 100644 index fdbe931f6f..0000000000 --- a/features/support/packages.rb +++ /dev/null @@ -1,11 +0,0 @@ -# Provides a method to quickly lookup whether we have -# a given packaging system installed. -def package_system_available?(name) - case name - when 'MacPorts' - uname = `uname` - (uname =~ /Darwin/ && File.exist?('/opt') && shell_out("which port").status.success?) - else - false - end -end |