Module: RBS::Test::SetupHelper
| Relationships & Source Files | |
| Namespace Children | |
| Exceptions: | |
| Defined in: | lib/rbs/test/setup_helper.rb | 
Constant Summary
- 
    DEFAULT_SAMPLE_SIZE =
    
 # File 'lib/rbs/test/setup_helper.rb', line 13100
Instance Method Summary
Instance Method Details
#get_sample_size(string)
[ GitHub ]# File 'lib/rbs/test/setup_helper.rb', line 15
def get_sample_size(string) case string when "" DEFAULT_SAMPLE_SIZE when 'ALL' nil else int_size = string.to_i raise InvalidSampleSizeError.new(string) unless int_size.positive? int_size end end