[Rt-commit] rt branch, 3.8.16-releng, updated. rt-3.8.16rc1-2-g6059e87
Kevin Falcone
falcone at bestpractical.com
Mon Feb 11 16:51:03 EST 2013
The branch, 3.8.16-releng has been updated
via 6059e87d4e3d4a23c7cfeeebac5fddcf49bf1411 (commit)
via ec8568352c39d37f4bff7adcf47f3eade194e7ad (commit)
from 0585835c89a868139d18e8e653bc382e5dfb5f91 (commit)
Summary of changes:
README | 5 -----
t/api/tickets_overlay_sql.t | 4 ++--
2 files changed, 2 insertions(+), 7 deletions(-)
- Log -----------------------------------------------------------------
commit ec8568352c39d37f4bff7adcf47f3eade194e7ad
Author: Kevin Falcone <falcone at bestpractical.com>
Date: Mon Feb 11 16:27:29 2013 -0500
The second of these (Requestor.EmailAddress) was failing on 5.8.8
I'm sure this is some awesome little perl bug, but since it's in the
test suite and on an unsupported perl version, I'm not willing to dig
terribly deep since this fixes it.
diff --git a/t/api/tickets_overlay_sql.t b/t/api/tickets_overlay_sql.t
index 5bc6140..2ef2d47 100644
--- a/t/api/tickets_overlay_sql.t
+++ b/t/api/tickets_overlay_sql.t
@@ -74,7 +74,7 @@ diag "Make sure we don't barf on invalid input for IS / IS NOT";
unlike $tix->BuildSelectQuery, qr/foobar/, "didn't find foobar in the select";
like $tix->BuildSelectQuery, qr/Subject IS NULL/, "found right clause";
- my ($status, $msg) = $tix->FromSQL("Subject IS NOT 'foobar'");
+ ($status, $msg) = $tix->FromSQL("Subject IS NOT 'foobar'");
ok ($status, "valid query") or diag("error: $msg");
is $tix->Count, 2, "found two tickets";
unlike $tix->BuildSelectQuery, qr/foobar/, "didn't find foobar in the select";
@@ -85,7 +85,7 @@ diag "Make sure we don't barf on invalid input for IS / IS NOT";
my ($status, $msg) = $tix->FromSQL("Requestor.Signature LIKE 'foo'");
ok (!$status, "invalid query - Signature not valid") or diag("error: $msg");
- my ($status, $msg) = $tix->FromSQL("Requestor.EmailAddress LIKE 'jesse'");
+ ($status, $msg) = $tix->FromSQL("Requestor.EmailAddress LIKE 'jesse'");
ok ($status, "valid query") or diag("error: $msg");
is $tix->Count, 1, "found one ticket";
like $tix->First->Subject, qr/another ticket/, "found the right ticket";
commit 6059e87d4e3d4a23c7cfeeebac5fddcf49bf1411
Author: Thomas Sibley <trs at bestpractical.com>
Date: Wed Feb 6 15:24:25 2013 -0800
Remove the "signature" paragraph from the README's explanation of RT
At one time (circa 2003) this made sense, but the explanation doesn't
need to read like a letter anymore. There's a whole team behind RT now,
and it's one less "out of date" date to boot.
Conflicts:
README
diff --git a/README b/README
index d59ef88..5562ed8 100644
--- a/README
+++ b/README
@@ -10,11 +10,6 @@ RT is commercially-supported software. To purchase support, training,
custom development, or professional services, please get in touch with
us at sales at bestpractical.com.
- Jesse Vincent
- Best Practical Solutions, LLC
- March, 2010
-
-
REQUIRED PACKAGES
-----------------
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list