use strict; use warnings; use Test::More tests => 1; my $args = qq#' -c "normal \r"'#; my $cmd = '/usr/local/bin/vim'; my $want = qq#/usr/local/bin/vim . ' -c "normal \r"'#; is ("$cmd . $args", $want); diag ("Tried for >$want<");