Changeset 12415


Ignore:
Timestamp:
09/01/10 05:21:51 (18 months ago)
Author:
azawawi
Message:

[S:H:P6] require STD 32116

Location:
trunk/Syntax-Highlight-Perl6
Files:
14 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Syntax-Highlight-Perl6/Makefile.PL

    r12374 r12415  
    66 
    77# Specific dependencies 
    8 requires 'Moose'                => '0.89'; 
    98requires 'Term::ANSIColor'      => '2.00'; 
    10 requires 'YAML::XS'             => '0.32'; 
    11 requires 'File::ShareDir'       => '1.02'; 
     9requires 'STD'                  => '32116'; 
    1210test_requires 'Test::Exception' => '0.27'; 
    1311test_requires 'Test::More'      => '0.86'; 
  • trunk/Syntax-Highlight-Perl6/lib/Syntax/Highlight/Perl6.pm

    r12374 r12415  
    9090            actions          => __PACKAGE__ . '::Actions', 
    9191            tmp_prefix       => $self->{tmp_prefix}, 
    92             syml_search_path => [$SHARED], 
    9392        ); 
    9493 
  • trunk/Syntax-Highlight-Perl6/t/00-std.t

    r12362 r12415  
    1010 
    1111#check that we have get back a parser when we have an empty string 
    12 my $r = STD->parse('', tmp_prefix => $tmp, setting => 'NULL'); 
     12my $r = STD->parse('', tmp_prefix => $tmp); 
    1313ok(defined $r, 'STD->parse() returned something on a empty string'); 
    1414isa_ok( $r, 'STD', 'STD->parse() return type'); 
Note: See TracChangeset for help on using the changeset viewer.