From 484bc40569b0c12fc18d91dde71c6f601db6d191 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Mon, 12 Nov 2007 05:20:52 +0000 Subject: [PATCH] leave notes as to future tests that need to be written for getBackToSiteURL --- t/Session/Url.t | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/t/Session/Url.t b/t/Session/Url.t index fa5db6a1a..1c5b7c56e 100644 --- a/t/Session/Url.t +++ b/t/Session/Url.t @@ -51,7 +51,7 @@ my @getRefererUrlTests = ( ); use Test::More; -plan tests => 54 + scalar(@getRefererUrlTests); +plan tests => 56 + scalar(@getRefererUrlTests); my $session = WebGUI::Test->session; @@ -350,6 +350,12 @@ is( q!getBackToSiteURL: Root returns you to the default Asset! ); +TODO: { + local $TODO = 'extra tests for getBackToSiteURL'; + ok(0, 'test a child of the import node'); + ok(0, 'test a child of the media folder'); +} + my $statefulAsset = WebGUI::Asset->getRoot($session)->addChild({ className => 'WebGUI::Asset::Snippet' }); $statefulAsset->{_properties}{state} = 'archived';