aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Legler <a3li@gentoo.org>2011-10-22 17:16:55 +0200
committerAlex Legler <a3li@gentoo.org>2011-10-22 17:16:55 +0200
commita49faf10d5a7640216edd847b994b2d2b318b2d5 (patch)
tree80ddb4863b51ab3731239b48a7871345bfd3b7b5
parentExact package matches are done with "=", not "==" (diff)
downloadglsamaker-a49faf10d5a7640216edd847b994b2d2b318b2d5.tar.gz
glsamaker-a49faf10d5a7640216edd847b994b2d2b318b2d5.tar.bz2
glsamaker-a49faf10d5a7640216edd847b994b2d2b318b2d5.zip
Comment out XML wellformedness test, currently not used
-rw-r--r--test/unit/revision_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/revision_test.rb b/test/unit/revision_test.rb
index 402afb1..52016dd 100644
--- a/test/unit/revision_test.rb
+++ b/test/unit/revision_test.rb
@@ -37,11 +37,11 @@ class RevisionTest < ActiveSupport::TestCase
revision.description = "<h1>hi"
revision.save
- assert revision.errors.any?
- assert_equal [:description, "is not well-formed XML"], revision.errors.first
+ #assert revision.errors.any?
+ #assert_equal [:description, "is not well-formed XML"], revision.errors.first
revision.description = "hi"
revision.save
- assert_equal false, revision.errors.any?
+ #assert_equal false, revision.errors.any?
end
end