CSS-Orientation

 view release on metacpan or  search on metacpan

t/FixCursorProperties.t  view on Meta::CPAN


use strict;
use warnings;

use Test::More
    tests => 1
;

use CSS::Orientation;

my $input = 'cursor: ne-resize';
my $output = 'cursor: nw-resize';
my $result = CSS::Orientation::FixCursorProperties( $input );

is( $output, $result );



( run in 1.250 second using v1.01-cache-2.11-cpan-39bf76dae61 )