Class: BlockDeviceGuard

Inherits:
SpecGuard show all
Defined in:
lib/extensions/mspec/mspec/guards/block_device.rb

Instance Attribute Summary

Attributes inherited from SpecGuard

#name

Instance Method Summary collapse

Methods inherited from SpecGuard

#add, clear, clear_guards, finish, guards, #initialize, #record, report, #report_key, #reporting?, ruby_version, #run_if, #run_unless, #unregister, #yield?

Constructor Details

This class inherits a constructor from SpecGuard

Instance Method Details

#match?Boolean

Returns:



4
5
6
7
8
9
10
11
# File 'lib/extensions/mspec/mspec/guards/block_device.rb', line 4

def match?
  platform_is_not :freebsd, :windows, :opal do
    block = `find /dev /devices -type b 2> /dev/null`
    return !(block.nil? || block.empty?)
  end

  false
end