From 21c998f7f11cc417d89b26b8c63939e8d08a0835 Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Tue, 23 Apr 2013 07:54:55 -0300 Subject: [PATCH] Add failing acceptance spec for #59 --- spec/acceptance/sanity_check_spec.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/spec/acceptance/sanity_check_spec.rb b/spec/acceptance/sanity_check_spec.rb index 296ee55..f4b240f 100644 --- a/spec/acceptance/sanity_check_spec.rb +++ b/spec/acceptance/sanity_check_spec.rb @@ -56,6 +56,11 @@ describe 'Sanity check' do `curl -s localhost:8080 --connect-timeout 2` expect($?.exitstatus).to_not eq 0 end + + it 'kills redir processes' do + processes = `pgrep redir` + expect($?.exitstatus).to_not eq 0 + end end context '`vagrant destroy`' do