1 #! /usr/bin/env ruby -S rspec
2 require 'spec_helper_acceptance'
4 describe 'delete_at function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
6 it 'should delete elements of the array' do
8 $output = delete_at(['a','b','c','b'], 1)
9 if $output == ['a','c','b'] {
10 notify { 'output correct': }
14 apply_manifest(pp, :catch_failures => true) do |r|
15 expect(r.stdout).to match(/Notice: output correct/)