Added modules
This commit is contained in:
parent
c53c931217
commit
59ec520742
646 changed files with 35182 additions and 0 deletions
27
modules/stdlib/spec/acceptance/to_bytes_spec.rb
Executable file
27
modules/stdlib/spec/acceptance/to_bytes_spec.rb
Executable file
|
@ -0,0 +1,27 @@
|
|||
#! /usr/bin/env ruby -S rspec
|
||||
require 'spec_helper_acceptance'
|
||||
|
||||
describe 'to_bytes function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
|
||||
describe 'success' do
|
||||
it 'converts kB to B' do
|
||||
pp = <<-EOS
|
||||
$o = to_bytes('4 kB')
|
||||
notice(inline_template('to_bytes is <%= @o.inspect %>'))
|
||||
EOS
|
||||
|
||||
apply_manifest(pp, :catch_failures => true) do |r|
|
||||
m = r.stdout.match(/to_bytes is (\d+)\D/)
|
||||
expect(m[1]).to eq("4096")
|
||||
end
|
||||
end
|
||||
it 'works without the B in unit'
|
||||
it 'works without a space before unit'
|
||||
it 'works without a unit'
|
||||
it 'converts fractions'
|
||||
end
|
||||
describe 'failure' do
|
||||
it 'handles no arguments'
|
||||
it 'handles non integer arguments'
|
||||
it 'handles unknown units like uB'
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue