test/helper.rb in chupa-text-1.3.3 vs test/helper.rb in chupa-text-1.3.4
- old
+ new
@@ -47,6 +47,10 @@
end
def omit_on_windows(message)
omit("Omit on Windows: #{message}") if Gem.win_platform?
end
+
+ def omit_on_macos(message)
+ omit("Omit on macOS: #{message}") if RUBY_PLATFORM.include?("darwin")
+ end
end