Description: compatibility with latest test-unit
 This patch will not be needed after this upstream version since upstream have
 moved to minitest.
Author: Antonio Terceiro <terceiro@debian.org>
Origin: vendor
Forwarded: not-needed

--- ruby-tilt-2.0.0+really1.4.1.orig/test/contest.rb
+++ ruby-tilt-2.0.0+really1.4.1/test/contest.rb
@@ -46,6 +46,14 @@ class Test::Unit::TestCase
     alias_method :describe, :context
   end
 
+  def assert_not_match(v1, v2, *anything_else)
+    if v1.is_a?(String)
+      super(Regexp.new(Regexp.escape(v1)), v2, *anything_else)
+    else
+      super
+    end
+  end
+
 private
 
   def self.context_name(name)
