HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-2.5.9/spec/mspec/spec/guards/block_device_spec.rb
require 'spec_helper'
require 'mspec/guards'

describe Object, "#with_block_device" do
  before :each do
    ScratchPad.clear

    @guard = BlockDeviceGuard.new
    BlockDeviceGuard.stub(:new).and_return(@guard)
  end

  platform_is_not :freebsd, :windows do
    it "yields if block device is available" do
      @guard.should_receive(:`).and_return("block devices")
      with_block_device { ScratchPad.record :yield }
      ScratchPad.recorded.should == :yield
    end

    it "does not yield if block device is not available" do
      @guard.should_receive(:`).and_return(nil)
      with_block_device { ScratchPad.record :yield }
      ScratchPad.recorded.should_not == :yield
    end
  end

  platform_is :freebsd, :windows do
    it "does not yield, since platform does not support block devices" do
      @guard.should_not_receive(:`)
      with_block_device { ScratchPad.record :yield }
      ScratchPad.recorded.should_not == :yield
    end
  end

  it "sets the name of the guard to :with_block_device" do
    with_block_device { }
    @guard.name.should == :with_block_device
  end

  it "calls #unregister even when an exception is raised in the guard block" do
    @guard.should_receive(:match?).and_return(true)
    @guard.should_receive(:unregister)
    lambda do
      with_block_device { raise Exception }
    end.should raise_error(Exception)
  end
end