Sha256: 25aa174b404b20384be9571d4086cca64fc68aa793fb7a1a1bac3493e6b5114d
Contents?: true
Size: 606 Bytes
Versions: 6
Compression:
Stored size: 606 Bytes
Contents
#! /usr/bin/env ruby -S rspec require 'spec_helper_acceptance' describe 'swapcase function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do describe 'success' do it 'works with strings' do pp = <<-EOS $o = swapcase('aBcD') notice(inline_template('swapcase is <%= @o.inspect %>')) EOS apply_manifest(pp, :catch_failures => true) do |r| expect(r.stdout).to match(/swapcase is "AbCd"/) end end it 'works with arrays' end describe 'failure' do it 'handles no arguments' it 'handles non arrays or strings' end end
Version data entries
6 entries across 6 versions & 1 rubygems