<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -18,12 +18,12 @@ var Screw = (function($) {
       context: [],
 
       describe: function(name, fn) {
-        var describe = $('&lt;li class=&quot;describe&quot;&gt;')
-          .append($('&lt;h1&gt;').text(name))
-          .append('&lt;ol class=&quot;befores&quot;&gt;')
-          .append('&lt;ul class=&quot;its&quot;&gt;')
-          .append('&lt;ul class=&quot;describes&quot;&gt;')
-          .append('&lt;ol class=&quot;afters&quot;&gt;');
+        var describe = $('&lt;li class=&quot;describe&quot;&gt;&lt;/li&gt;')
+          .append($('&lt;h1&gt;&lt;/h1&gt;').text(name))
+          .append('&lt;ol class=&quot;befores&quot;&gt;&lt;/ol&gt;')
+          .append('&lt;ul class=&quot;its&quot;&gt;&lt;/ul&gt;')
+          .append('&lt;ul class=&quot;describes&quot;&gt;&lt;/ul&gt;')
+          .append('&lt;ol class=&quot;afters&quot;&gt;&lt;/ol&gt;');
 
         this.context.push(describe);
         fn.call();
@@ -35,8 +35,8 @@ var Screw = (function($) {
       },
 
       it: function(name, fn) {
-        var it = $('&lt;li class=&quot;it&quot;&gt;')
-          .append($('&lt;h2&gt;').text(name))
+        var it = $('&lt;li class=&quot;it&quot;&gt;&lt;/li&gt;')
+          .append($('&lt;h2&gt;&lt;/h2&gt;').text(name))
           .data('screwunit.run', fn);
 
         this.context[this.context.length-1]
@@ -45,7 +45,7 @@ var Screw = (function($) {
       },
 
       before: function(fn) {
-        var before = $('&lt;li class=&quot;before&quot;&gt;')
+        var before = $('&lt;li class=&quot;before&quot;&gt;&lt;/li&gt;')
           .data('screwunit.run', fn);
 
         this.context[this.context.length-1]
@@ -54,7 +54,7 @@ var Screw = (function($) {
       },
 
       after: function(fn) {
-        var after = $('&lt;li class=&quot;after&quot;&gt;')
+        var after = $('&lt;li class=&quot;after&quot;&gt;&lt;/li&gt;')
           .data('screwunit.run', fn);
 
         this.context[this.context.length-1]
@@ -66,11 +66,11 @@ var Screw = (function($) {
 
   $(screw).queue(function() { $(screw).trigger('loading') });
   $(function() {
-    $('&lt;div class=&quot;describe&quot;&gt;')
-      .append('&lt;h3 class=&quot;status&quot;&gt;')
-      .append('&lt;ol class=&quot;befores&quot;&gt;')
-      .append('&lt;ul class=&quot;describes&quot;&gt;')
-      .append('&lt;ol class=&quot;afters&quot;&gt;')
+    $('&lt;div class=&quot;describe&quot;&gt;&lt;/div&gt;')
+      .append('&lt;h3 class=&quot;status&quot;&gt;&lt;/h3&gt;')
+      .append('&lt;ol class=&quot;befores&quot;&gt;&lt;/ol&gt;')
+      .append('&lt;ul class=&quot;describes&quot;&gt;&lt;/ul&gt;')
+      .append('&lt;ol class=&quot;afters&quot;&gt;&lt;/ol&gt;')
       .appendTo('body');
 
     $(screw).dequeue();</diff>
      <filename>spec/lib/screw.builder.js</filename>
    </modified>
    <modified>
      <diff>@@ -26,10 +26,10 @@
         .bind('failed', function(e, reason) {
           $(this)
             .addClass('failed')
-            .append($('&lt;p class=&quot;error&quot;&gt;').text(reason.toString()));
+            .append($('&lt;p class=&quot;error&quot;&gt;&lt;/p&gt;').text(reason.toString()));
           if (reason.fileName || reason.lineNumber) {
             $(this)
-              .append($('&lt;p class=&quot;error&quot;&gt;').text(reason.fileName + &quot; : &quot; + reason.lineNumber));
+              .append($('&lt;p class=&quot;error&quot;&gt;&lt;/p&gt;').text(reason.fileName + &quot; : &quot; + reason.lineNumber));
           }
         })
     })</diff>
      <filename>spec/lib/screw.events.js</filename>
    </modified>
    <modified>
      <diff>@@ -140,31 +140,6 @@ Screw.Matchers = (function($) {
       failure_message: function(expected, actual, not) {
         return 'expected ' + $.print(actual) + (not ? ' to not contain selector ' : ' to contain selector ') + expected;
       }
-    },
-    
-    be_greater_than: {
-        match: function(expected, actual) {
-            return actual &gt; expected;
-        },
-        
-        failure_message: function(expected, actual, not) {
-          return 'expected ' + $.print(actual) + (not ? ' to not be greater than ' : ' to be greater than ') + expected;
-        }
-    },
-    
-    be_near: {
-         match: function(expected, actual) {
-             if (!Object.isArray(expected)) {
-                 expected = [expected, 1];
-             }
-             return (actual &lt; expected[0] + expected[1]) || (actual &gt; expected[0] - expected[1]);
-         },
-         
-         failure_message: function(expected, actual, not) {
-           return 'expected ' + $.print(actual) + (not ? ' to not be within 1 of ' : ' to be within 1 of ') + expected;
-         }
     }
-    
-    
   }
 })(jQuery);
\ No newline at end of file</diff>
      <filename>spec/lib/screw.matchers.js</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>58b95b829a641e545a26eb88a586a888391f0b1b</id>
    </parent>
  </parents>
  <author>
    <name>topper</name>
    <email>topper@toppingdesign.com</email>
  </author>
  <url>http://github.com/tobowers/motionbox-eventhandler/commit/257f72c59e33e1b177cdacb6a2d8af967536dda9</url>
  <id>257f72c59e33e1b177cdacb6a2d8af967536dda9</id>
  <committed-date>2008-07-31T11:18:02-07:00</committed-date>
  <authored-date>2008-07-31T11:18:02-07:00</authored-date>
  <message>update screw-unit for ie fixes</message>
  <tree>adcf4d90c225c6209bfca26bca2dbf9bd03ae5ba</tree>
  <committer>
    <name>topper</name>
    <email>topper@toppingdesign.com</email>
  </committer>
</commit>
