diff --git a/t/Asset/Wobject/StoryArchive.t b/t/Asset/Wobject/StoryArchive.t new file mode 100644 index 000000000..2fbc5f41f --- /dev/null +++ b/t/Asset/Wobject/StoryArchive.t @@ -0,0 +1,54 @@ +# vim:syntax=perl +#------------------------------------------------------------------- +# WebGUI is Copyright 2001-2009 Plain Black Corporation. +#------------------------------------------------------------------- +# Please read the legal notices (docs/legal.txt) and the license +# (docs/license.txt) that came with this distribution before using +# this software. +#------------------------------------------------------------------ +# http://www.plainblack.com info@plainblack.com +#------------------------------------------------------------------ + +# Write a little about what this script tests. +# +# + +use FindBin; +use strict; +use lib "$FindBin::Bin/../../lib"; +use Test::More; +use Test::Deep; +use Data::Dumper; + +use WebGUI::Test; # Must use this before any other WebGUI modules +use WebGUI::Session; +use WebGUI::Text; + +#---------------------------------------------------------------------------- +# Init +my $session = WebGUI::Test->session; + +#---------------------------------------------------------------------------- +# Tests + +my $tests = 0; +plan tests => 1 + $tests; + +#---------------------------------------------------------------------------- +# put your tests here + +my $class = 'WebGUI::Asset::Wobject::StoryArchive'; +my $loaded = use_ok($class); + +my $storage; + +SKIP: { + + skip "Unable to load module $class", $tests unless $loaded; + +} + +#---------------------------------------------------------------------------- +# Cleanup +END { +} diff --git a/t/Asset/Wobject/StoryTopic.t b/t/Asset/Wobject/StoryTopic.t new file mode 100644 index 000000000..887f066bb --- /dev/null +++ b/t/Asset/Wobject/StoryTopic.t @@ -0,0 +1,54 @@ +# vim:syntax=perl +#------------------------------------------------------------------- +# WebGUI is Copyright 2001-2009 Plain Black Corporation. +#------------------------------------------------------------------- +# Please read the legal notices (docs/legal.txt) and the license +# (docs/license.txt) that came with this distribution before using +# this software. +#------------------------------------------------------------------ +# http://www.plainblack.com info@plainblack.com +#------------------------------------------------------------------ + +# Write a little about what this script tests. +# +# + +use FindBin; +use strict; +use lib "$FindBin::Bin/../../lib"; +use Test::More; +use Test::Deep; +use Data::Dumper; + +use WebGUI::Test; # Must use this before any other WebGUI modules +use WebGUI::Session; +use WebGUI::Text; + +#---------------------------------------------------------------------------- +# Init +my $session = WebGUI::Test->session; + +#---------------------------------------------------------------------------- +# Tests + +my $tests = 0; +plan tests => 1 + $tests; + +#---------------------------------------------------------------------------- +# put your tests here + +my $class = 'WebGUI::Asset::Wobject::StoryTopic'; +my $loaded = use_ok($class); + +my $storage; + +SKIP: { + + skip "Unable to load module $class", $tests unless $loaded; + +} + +#---------------------------------------------------------------------------- +# Cleanup +END { +}