The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use Test::More;
use Shell::Guess;

plan skip_all => 'VMS only test' unless $^O eq 'VMS';
plan tests => 2;

is eval { Shell::Guess->running_shell->is_dcl }, 1, "running dcl";
diag $@ if $@;
is eval { Shell::Guess->login_shell->is_dcl }, 1, "login dcl";
diag $@ if $@;