From 89888be94451ca7949ed148052351556453c6674 Mon Sep 17 00:00:00 2001 From: Ryan Davis Date: Thu, 14 Nov 2019 15:05:13 -0800 Subject: [PATCH] Removing the osx? guard that has been pushed to minitest and released. This is mostly to bump a release because our last one blew up. Signed-off-by: Ryan Davis --- test/helper.rb | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/helper.rb b/test/helper.rb index bc521055e..d0365a612 100644 --- a/test/helper.rb +++ b/test/helper.rb @@ -170,10 +170,3 @@ end class InspecTest < Minitest::Test # shared stuff here end - -module Minitest::Guard - # TODO: push up to minitest - def osx?(platform = RUBY_PLATFORM) - /darwin/ =~ platform - end -end