Sha256: e3f05d6e98b8665969820a5259bd967a2e7a465d9c1ec64d5d11d566125342ed
Contents?: true
Size: 1.38 KB
Versions: 26
Compression:
Stored size: 1.38 KB
Contents
Feature: Configure the phsical block size of disk As a developer I want to configure the physical block size In order to make the disk usage work for my application's setup Background: Given I use the fixture "cli-app" Scenario: Default value Given a file named "features/support/aruba.rb" with: """ruby Aruba.configure do |config| puts %(The default value is "#{config.physical_block_size}") end """ When I successfully run `cucumber` Then the output should contain: """ The default value is "512" """ Scenario: Set the block size to something else which is a power of two Given a file named "features/support/aruba.rb" with: """ruby Aruba.configure do |config| # use current working directory config.physical_block_size = 4096 end Aruba.configure do |config| puts %(The default value is "#{config.physical_block_size}") end """ When I successfully run `cucumber` Then the output should contain: """ The default value is "4096" """ Scenario: The value needs to be a power of two, otherwise it will fail Given a file named "features/support/aruba.rb" with: """ruby Aruba.configure do |config| config.physical_block_size = 3 end """ When I run `cucumber` Then the output should contain: """ Contract violation for argument """
Version data entries
26 entries across 26 versions & 2 rubygems