<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,7 +1,25 @@
 require 'helper'
 
 class TestImbue &lt; MiniTest::Unit::TestCase
-  def test_something_for_real
-    flunk &quot;hey buddy, you should probably rename this file and start testing for real&quot;
+  def setup
+    @narf_module = Module.new do
+      def narf
+        'narf'
+      end
+    end
+  end
+
+  def teardown
+    @narf_module.send :undef_method, :narf
+  end
+
+  def test_plain_include_sucks
+    Enumerable.send :include, @narf_module
+    assert_raises(NoMethodError) { [].narf }
+  end
+
+  def test_imbue_totally_rules
+    Enumerable.send :imbue, @narf_module
+    assert_equal 'narf', [].narf
   end
 end</diff>
      <filename>test/test_imbue.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>994a14b6a6287efe915544702c17093008d323f8</id>
    </parent>
  </parents>
  <author>
    <name>Caio Chassot</name>
    <email>dev@caiochassot.com</email>
  </author>
  <url>http://github.com/kch/imbue/commit/c27416916db60cf4d33898823ad35495449f58da</url>
  <id>c27416916db60cf4d33898823ad35495449f58da</id>
  <committed-date>2009-10-31T17:05:36-07:00</committed-date>
  <authored-date>2009-10-31T17:05:36-07:00</authored-date>
  <message>The most awesome test suite</message>
  <tree>d3685c80b4b4b63d4bb4401397ef9dae17d0f2c2</tree>
  <committer>
    <name>Caio Chassot</name>
    <email>dev@caiochassot.com</email>
  </committer>
</commit>
