Pass empty JSON for icalFeeds field in Calendar until I can get good sample data; makes Calendar Test::Asset tests pass.

This commit is contained in:
Scott Walters 2010-08-11 23:24:28 -04:00
parent 8f616a9fe1
commit 773fadcffc
2 changed files with 16 additions and 7 deletions

View file

@ -9,6 +9,8 @@ package Test::WebGUI::Asset::Wobject::Calendar;
# http://www.plainblack.com info@plainblack.com
#-------------------------------------------------------------------
use strict;
use warnings;
use base qw/Test::WebGUI::Asset::Wobject/;
@ -21,4 +23,10 @@ sub list_of_tables {
return [qw/assetData wobject Calendar/];
}
sub postProcessMergedProperties {
my $test = shift;
my $properties = shift;
$properties->{icalFeeds} = q{[]}; # XXX get some real data to stick in there
}
1;