Method: Object#platform_is_not

Defined in:
lib/mspec/guards/platform.rb

#platform_is_not(*args) ⇒ Object



33
34
35
36
37
# File 'lib/mspec/guards/platform.rb', line 33

def platform_is_not(*args)
  g = PlatformGuard.new(*args)
  yield if g.yield? true
  g.unregister
end