[Rt-commit] rtfm branch, master, updated. 429fb2a8ed3edef0ab32efb0a06c576eba669532
Kevin Falcone
falcone at bestpractical.com
Wed Dec 16 17:04:42 EST 2009
The branch, master has been updated
via 429fb2a8ed3edef0ab32efb0a06c576eba669532 (commit)
via 2b95f2aaba1440ab3d414df3b0b376cc2b64c624 (commit)
via fd023fc1bbb15f274d8e3fc94516ab493aa44f47 (commit)
from 03f8033b73fa06506693f1df828165856b4ba46d (commit)
Summary of changes:
.gitignore | 1 +
inc/Module/Install/RTx.pm | 7 ++++---
t/04interface.t | 2 +-
t/05cfsearch.t | 2 +-
t/06search_interface.t | 2 +-
t/2basic_api.t | 2 +-
t/3upload-customfields.t | 2 +-
t/ArticleCollection_Overlay.pm.t | 2 +-
t/Article_Overlay.pm.t | 2 +-
t/Class_Overlay.pm.t | 2 +-
t/URI_a.t | 2 +-
t/URI_fsck_com_rtfm.t | 2 +-
12 files changed, 15 insertions(+), 13 deletions(-)
- Log -----------------------------------------------------------------
commit fd023fc1bbb15f274d8e3fc94516ab493aa44f47
Author: Kevin Falcone <falcone at bestpractical.com>
Date: Wed Dec 16 16:50:00 2009 -0500
udpate M::I::RTx
diff --git a/inc/Module/Install/RTx.pm b/inc/Module/Install/RTx.pm
index 20a354b..5480124 100644
--- a/inc/Module/Install/RTx.pm
+++ b/inc/Module/Install/RTx.pm
@@ -8,7 +8,7 @@ no warnings 'once';
use Module::Install::Base;
use base 'Module::Install::Base';
-our $VERSION = '0.24';
+our $VERSION = '0.25';
use FindBin;
use File::Glob ();
@@ -50,7 +50,8 @@ sub RTx {
until ( eval { require RT; $RT::LocalPath } ) {
warn
"Cannot find the location of RT.pm that defines \$RT::LocalPath in: @INC\n";
- $_ = $self->prompt("Path to your RT.pm:") or exit;
+ $_ = $self->prompt("Path to directory containing your RT.pm:") or exit;
+ $_ =~ s/\/RT\.pm$//;
push @INC, $_, "$_/rt3/lib", "$_/lib/rt3", "$_/lib";
}
}
@@ -188,4 +189,4 @@ sub RTxInit {
__END__
-#line 302
+#line 303
commit 2b95f2aaba1440ab3d414df3b0b376cc2b64c624
Author: Kevin Falcone <falcone at bestpractical.com>
Date: Wed Dec 16 16:51:36 2009 -0500
ignore tmp files from tests
diff --git a/.gitignore b/.gitignore
index d41d0ec..d6101b0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@ Makefile.old
MANIFEST.bak
blib
pm_to_blib
+t/tmp
commit 429fb2a8ed3edef0ab32efb0a06c576eba669532
Author: Kevin Falcone <falcone at bestpractical.com>
Date: Wed Dec 16 16:51:40 2009 -0500
the RT test / plugin refactor caused an extract test to run, bump counts
diff --git a/t/04interface.t b/t/04interface.t
index 5581f8d..9794ee6 100644
--- a/t/04interface.t
+++ b/t/04interface.t
@@ -4,7 +4,7 @@ use strict;
use warnings;
use lib 't/lib';
-use RT::FM::Test tests => 55;
+use RT::FM::Test tests => 56;
use RT::CustomField;
use RT::EmailParser;
diff --git a/t/05cfsearch.t b/t/05cfsearch.t
index 6f7e1ee..3682f3c 100644
--- a/t/05cfsearch.t
+++ b/t/05cfsearch.t
@@ -4,7 +4,7 @@ use strict;
use warnings;
use lib 't/lib';
-use RT::FM::Test tests => 13;
+use RT::FM::Test tests => 14;
my $suffix = '-'. $$;
diff --git a/t/06search_interface.t b/t/06search_interface.t
index b336f98..476b533 100644
--- a/t/06search_interface.t
+++ b/t/06search_interface.t
@@ -4,7 +4,7 @@ use strict;
use warnings;
use lib 't/lib';
-use RT::FM::Test tests => 24;
+use RT::FM::Test tests => 25;
use RT::CustomField;
use RT::Queue;
diff --git a/t/2basic_api.t b/t/2basic_api.t
index 4ceb25b..ee9d442 100644
--- a/t/2basic_api.t
+++ b/t/2basic_api.t
@@ -4,7 +4,7 @@ use warnings;
use strict;
use lib 't/lib';
-use RT::FM::Test tests => 42;
+use RT::FM::Test tests => 43;
use_ok 'RT::FM::System';
my $sys = new RT::FM::System;
diff --git a/t/3upload-customfields.t b/t/3upload-customfields.t
index cad9690..37b3c05 100644
--- a/t/3upload-customfields.t
+++ b/t/3upload-customfields.t
@@ -4,7 +4,7 @@ use strict;
use warnings;
use lib 't/lib';
-use RT::FM::Test tests => 21;
+use RT::FM::Test tests => 22;
$RT::Test::SKIP_REQUEST_WORK_AROUND = 1;
use RT;
diff --git a/t/ArticleCollection_Overlay.pm.t b/t/ArticleCollection_Overlay.pm.t
index 375924f..088bd83 100644
--- a/t/ArticleCollection_Overlay.pm.t
+++ b/t/ArticleCollection_Overlay.pm.t
@@ -4,7 +4,7 @@ use strict;
use warnings;
use lib 't/lib';
-use RT::FM::Test tests => 32;
+use RT::FM::Test tests => 33;
use_ok 'RT::FM::ArticleCollection';
use_ok 'RT::FM::ClassCollection';
diff --git a/t/Article_Overlay.pm.t b/t/Article_Overlay.pm.t
index 92e2422..b6b8da1 100644
--- a/t/Article_Overlay.pm.t
+++ b/t/Article_Overlay.pm.t
@@ -4,7 +4,7 @@ use strict;
use warnings;
use lib 't/lib';
-use RT::FM::Test tests => 70;
+use RT::FM::Test tests => 71;
use_ok 'RT::FM::ArticleCollection';
use_ok 'RT::FM::ClassCollection';
diff --git a/t/Class_Overlay.pm.t b/t/Class_Overlay.pm.t
index 4cb7645..a371ae6 100644
--- a/t/Class_Overlay.pm.t
+++ b/t/Class_Overlay.pm.t
@@ -4,7 +4,7 @@ use strict;
use warnings;
use lib 't/lib';
-use RT::FM::Test tests => 15;
+use RT::FM::Test tests => 16;
use_ok 'RT::FM::ArticleCollection';
use_ok 'RT::FM::ClassCollection';
diff --git a/t/URI_a.t b/t/URI_a.t
index 2b4f45f..88f6b68 100644
--- a/t/URI_a.t
+++ b/t/URI_a.t
@@ -4,7 +4,7 @@ use strict;
use warnings;
use lib 't/lib';
-use RT::FM::Test tests => 9;
+use RT::FM::Test tests => 10;
use_ok("RT::URI::a");
my $uri = RT::URI::a->new($RT::SystemUser);
diff --git a/t/URI_fsck_com_rtfm.t b/t/URI_fsck_com_rtfm.t
index d0f7c67..fc40e5f 100644
--- a/t/URI_fsck_com_rtfm.t
+++ b/t/URI_fsck_com_rtfm.t
@@ -4,7 +4,7 @@ use strict;
use warnings;
use lib 't/lib';
-use RT::FM::Test tests => 11;
+use RT::FM::Test tests => 12;
use_ok "RT::URI::fsck_com_rtfm";
my $uri = RT::URI::fsck_com_rtfm->new( $RT::SystemUser );
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list