/[Frey]/trunk/t/02-frey-session.t
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/t/02-frey-session.t

Parent Directory Parent Directory | Revision Log Revision Log


Revision 455 - (show annotations)
Wed Nov 19 15:28:23 2008 UTC (15 years, 5 months ago) by dpavlin
File MIME type: application/x-troff
File size: 556 byte(s)
rename invocable events with prefix as_ with fallback in Frey::Web

This started with brute-force rename using:

  perl -p -i -n -e 's/sub markup/sub as_markup/'  `grep -lr 'sub markup' lib t`
  perl -p -i -n -e 's/sub data/sub as_data/'      `grep -lr 'sub data' lib t`
  perl -p -i -n -e 's/sub sponge/sub as_sponge/'  `grep -lr 'sub sponge' lib t`

  perl -p -i -n -e 's/->markup/->as_markup/'      `grep -lr -- '->markup' lib t`
  perl -p -i -n -e 's/->data/->as_data/'          `grep -lr -- '->data' lib t`
  perl -p -i -n -e 's/->sponge/->as_sponge/'      `grep -lr -- '->sponge' lib t`

  perl -p -i -n -e 's!/markup!/as_markup!'        `grep -lr -- '/markup' lib t etc`
  perl -p -i -n -e 's!/data!/as_data!'            `grep -lr -- '/data' lib t etc`
  perl -p -i -n -e 's!/sponge!/as_sponge!'        `grep -lr -- '/sponge' lib t etc`

1 #!/usr/bin/perl
2 use strict;
3 use warnings;
4
5 use Test::More tests => 12;
6 use lib 'lib';
7
8 use Data::Dump qw/dump/;
9
10 my $debug = @ARGV ? 1 : 0;
11
12 BEGIN {
13 use_ok('Frey::Web');
14 }
15
16 {
17 package Mock;
18 use Moose;
19 extends 'Frey';
20 with 'Frey::Session';
21 }
22
23 ok( my $o = Mock->new( debug => $debug ), 'new' );
24 diag $o->dump(2) if $debug;
25
26 ok( $o->usage, 'usage' );
27
28 foreach my $nr ( 0, 1, 2, 42 ) {
29 ok( defined( $o->usage->{test} = $nr ), "write $nr" );
30 cmp_ok( $o->usage->{test}, '=', 42, "read $nr" );
31 }
32
33 ok( my $data = $o->as_data, 'data' );
34 diag $data if $debug;

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26