Author: dom Date: 2006-06-08 22:30:28 +0100 (Thu, 08 Jun 2006) New Revision: 804
Modified: trunk/Changes trunk/t/11_utils.t Log: test fix for wiki::toolkit change (we won't be releasing quite yet then)
Modified: trunk/Changes =================================================================== --- trunk/Changes 2006-06-08 21:14:25 UTC (rev 803) +++ trunk/Changes 2006-06-08 21:30:28 UTC (rev 804) @@ -1,6 +1,6 @@ "#" items refer to tickets. See http://dev.openguides.org/report/9 for details.
-0.55 8 June 2006 +0.55 Pass the feed_listing (currently just recent_changes) through all the feed related code, rather than assuming it'll only ever be recent changes. Will allow other listings of nodes to be handled
Modified: trunk/t/11_utils.t =================================================================== --- trunk/t/11_utils.t 2006-06-08 21:14:25 UTC (rev 803) +++ trunk/t/11_utils.t 2006-06-08 21:30:28 UTC (rev 804) @@ -1,4 +1,5 @@ use strict; +use Wiki::Toolkit::Setup::SQLite; use OpenGuides::Config; use OpenGuides::Utils; use Test::More tests => 7; @@ -16,6 +17,11 @@ skip "DBD::SQLite not installed - no database to test with", 5 unless $have_sqlite;
+ # Clear out the database from any previous runs. + unlink "t/node.db"; + unlink <t/indexes/*>; + Wiki::Toolkit::Setup::SQLite::setup( { dbname => "t/node.db" } ); + my $config = OpenGuides::Config->new( vars => { dbtype => "sqlite",