mvhub-dev team mailing list archive
-
mvhub-dev team
-
Mailing list archive
-
Message #00024
[Branch ~mvhub-dev/mvhub/trunk] Rev 351: fixed html lint so testing can continue on directories with email in
Merge authors:
Priya Ravindran (priya)
Renuka Pulaparti <pulaparti@xxxxxxxxxx>
Related merge proposals:
https://code.launchpad.net/~pulaparti/mvhub/fix_html_lint/+merge/21969
proposed by: pulaparti (pulaparti)
review: Approve - Dan MacNeil (omacneil)
------------------------------------------------------------
revno: 351 [merge]
committer: Priya Ravindran <pthirumal@xxxxxxxxxx>
branch nick: trunk
timestamp: Thu 2010-03-25 11:49:52 -0400
message:
fixed html lint so testing can continue on directories with email in
their names
modified:
app-mvhub/t/html_lint.t
--
lp:mvhub
https://code.launchpad.net/~mvhub-dev/mvhub/trunk
Your team mvhub-dev is subscribed to branch lp:mvhub.
To unsubscribe from this branch go to https://code.launchpad.net/~mvhub-dev/mvhub/trunk/+edit-subscription.
=== modified file 'app-mvhub/t/html_lint.t'
--- app-mvhub/t/html_lint.t 2010-02-01 01:03:27 +0000
+++ app-mvhub/t/html_lint.t 2010-03-25 15:49:52 +0000
@@ -18,8 +18,8 @@
my @files = get_files(qw/*.inc *.tmpl *.shtml/);
# we use HTML::Template for more than html files
-@files = grep { !/email/ } @files;
-@files = grep { !/text/ } @files;
+
+@files = grep { !m#conf/templates/text# } @files;
eval ' use Test::HTML::Lint; ';
if ($@) {