Add jQuery validation plugin to the exclusions

This commit is contained in:
Tim Clem
2011-12-07 14:08:59 -08:00
parent 446f53be70
commit 1acfe23347
2 changed files with 7 additions and 0 deletions

View File

@@ -79,6 +79,9 @@
# Visual Studio IntelliSense
- -vsdoc\.js$
# jQuery validation plugin (MS bundles this with asp.net mvc)
- (^|/)jquery([^.]*)\.validate(\.min)?\.js$
# Microsoft Ajax
- (^|/)[Mm]icrosoft([Mm]vc)?([Aa]jax|[Vv]alidation)(\.debug)?\.js$

View File

@@ -253,6 +253,10 @@ class TestBlob < Test::Unit::TestCase
assert blob("Scripts/MicrosoftMvcValidation.debug.js").vendored?
assert blob("Scripts/MicrosoftMvcValidation.js").vendored?
# jQuery validation plugin (MS bundles this with asp.net mvc)
assert blob("Scripts/jquery.validate.js").vendored?
# NuGet Packages
assert blob("packages/Modernizr.2.0.6/Content/Scripts/modernizr-2.0.6-development-only.js").vendored?
end