/[A3C]/t/50-strix.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

Annotation of /t/50-strix.t

Parent Directory Parent Directory | Revision Log Revision Log


Revision 193 - (hide annotations)
Tue Jun 17 21:27:31 2008 UTC (15 years, 9 months ago) by dpavlin
File MIME type: application/x-troff
File size: 788 byte(s)
- implement FIFO pool of dbh connections to strix
- rename sitemap to sites which is more correct
1 dpavlin 168 #!/usr/bin/env perl
2     use warnings;
3     use strict;
4    
5     =head1 DESCRIPTION
6    
7     test Strix integration
8    
9     =cut
10    
11 dpavlin 169 use Jifty::Test tests => 10;
12 dpavlin 168
13     use Data::Dump qw/dump/;
14    
15     use_ok('Strix');
16    
17     $Strix::debug = 1 if @ARGV;
18     my $debug = $Strix::debug;
19    
20 dpavlin 174 my $instance = 'os-test0604-zg';
21     $instance = 'new';
22 dpavlin 168
23 dpavlin 174 ok( my $dbh = Strix->dbh( $instance ), 'dbh' );
24 dpavlin 168 isa_ok( $dbh, 'DBI::db' );
25    
26 dpavlin 174 ok( my $strix = Strix->new({ instance => $instance }), 'new' );
27 dpavlin 168 isa_ok( $strix, 'Strix' );
28    
29     my $url = '/';
30    
31     ok( my $category = $strix->category( $url ), "category $url" );
32     diag dump( $category ) if $debug;
33    
34    
35     ok( my $layout = $strix->layout( $url ), "layout $url" );
36     diag dump( $layout ) if $debug;
37     ok( $layout->{pre}, 'pre' );
38     ok( $layout->{free}, 'free' );
39 dpavlin 169
40 dpavlin 193 ok( my @sites = $strix->sites, "sites" );
41     diag dump( @sites ) if $debug;

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26