[Rt-commit] [svn] r932 - in RT-Client: . lib/RT t

autrijus at pallas.eruditorum.org autrijus at pallas.eruditorum.org
Wed May 19 02:21:49 EDT 2004


Author: autrijus
Date: Wed May 19 02:21:48 2004
New Revision: 932

Modified:
   RT-Client/   (props changed)
   RT-Client/Changes
   RT-Client/META.yml
   RT-Client/lib/RT/Client.pm
   RT-Client/t/1-procedural.t
Log:
 ----------------------------------------------------------------------
 r4987 at not:  autrijus | 2004-05-19T05:06:10.222923Z
 
 * changes.
 ----------------------------------------------------------------------
 r4988 at not:  autrijus | 2004-05-19T05:22:23.823335Z
 
 * add an extra test on .Count.
 ----------------------------------------------------------------------
 r4989 at not:  autrijus | 2004-05-19T06:21:37.702345Z
 
 * 0.00_03.
 ----------------------------------------------------------------------


Modified: RT-Client/Changes
==============================================================================
--- RT-Client/Changes	(original)
+++ RT-Client/Changes	Wed May 19 02:21:48 2004
@@ -1,3 +1,17 @@
+[Changes for 0.00_03 - May 19, 2004]
+
+Add missing dependency to URI.
+
+Removed the unneccessary Get before Get/Set.
+
+All tests now pass correctly now with RT::Atom 0.00_02.
+
+[Changes for 0.00_02 - May 19, 2004]
+
+Add missing dependency to XML::Simple.
+
+Ditch dependency to Filter::Include.
+
 [Changes for 0.00_01 - May 17, 2004]
 
 Initial CPAN Release.

Modified: RT-Client/META.yml
==============================================================================
--- RT-Client/META.yml	(original)
+++ RT-Client/META.yml	Wed May 19 02:21:48 2004
@@ -1,5 +1,5 @@
 name: RT-Client
-version: 0.00_02
+version: 0.00_03
 abstract: A client of RT from Best Practical Solutions
 author: Autrijus Tang <autrijus at autrijus.org>
 license: perl

Modified: RT-Client/lib/RT/Client.pm
==============================================================================
--- RT-Client/lib/RT/Client.pm	(original)
+++ RT-Client/lib/RT/Client.pm	Wed May 19 02:21:48 2004
@@ -1,7 +1,7 @@
 package RT::Client;
 
 use 5.006;
-our $VERSION = '0.00_02';
+our $VERSION = '0.00_03';
 our @ISA = 'XML::Atom::Client';
 
 =head1 NAME
@@ -10,7 +10,7 @@
 
 =head1 VERSION
 
-This document describes version 0.00_02 of RT::Client, released May 19, 2004.
+This document describes version 0.00_03 of RT::Client, released May 19, 2004.
 
 =head1 SYNOPSIS
 

Modified: RT-Client/t/1-procedural.t
==============================================================================
--- RT-Client/t/1-procedural.t	(original)
+++ RT-Client/t/1-procedural.t	Wed May 19 02:21:48 2004
@@ -13,7 +13,7 @@
 get('http://localhost/?user=root&pass=password');
 
 if (get('http://root:password@localhost/Atom/0.3/') =~ /<feed/) {
-    plan tests => 65;
+    plan tests => 66;
 }
 else {
     plan skip_all => 'Atom 0.3 not available on localhost';
@@ -136,6 +136,7 @@
 my $id = $rt->get("$uri.Id");
 is($rt->set("Tickets/$id.Subject", 'by system'), 'by system', 'set subject');
 my $sys_id = $rt->get("Users/RT_System.Id");
+isnt($rt->get("Tickets/$id/Transactions.Count"), 1, "transactions happened");
 is($rt->get("Tickets/$id/Transactions/*-1.Creator"), $sys_id, 'set by system');
 $rt->current_user($rt->username);
 


More information about the Rt-commit mailing list