<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -32,14 +32,9 @@ if HAS_SQLITE3 || HAS_MYSQL || HAS_POSTGRES
     end
     
     it &quot;should not allow enhancements of modules that aren't remixed&quot; do
-      begin
-        User.enhance Image do
-          puts &quot;I can enhance something I didn't remix&quot;
-        end
-        false
-      rescue Exception =&gt; e
-        true
-      end
+      lambda {
+        User.enhance Image
+      }.should raise_error
     end
 
     it &quot;should provide a default suffix values for models that do 'is :remixable'&quot; do
@@ -49,7 +44,7 @@ if HAS_SQLITE3 || HAS_MYSQL || HAS_POSTGRES
     it &quot;should allow enhancing a model that is remixed&quot; do
       Article.enhance :images do
         def self.test_enhance
-          puts &quot;Testing&quot;
+          true
         end
       end
 
@@ -59,7 +54,7 @@ if HAS_SQLITE3 || HAS_MYSQL || HAS_POSTGRES
     it &quot;should allow enhancing a model that was remixed from a nested module&quot; do
       Article.enhance :ratings do
         def self.test_enhance
-          puts &quot;Testing&quot;
+          true
         end
       end
 
@@ -72,7 +67,7 @@ if HAS_SQLITE3 || HAS_MYSQL || HAS_POSTGRES
     it &quot;should allow enhancing the same remixable twice with different class_name attributes&quot; do
       Article.enhance :taggable, &quot;UserTagging&quot; do
         def self.test_enhance
-          puts &quot;Testing&quot;
+          true
         end
       end
 
@@ -83,7 +78,7 @@ if HAS_SQLITE3 || HAS_MYSQL || HAS_POSTGRES
       
       Article.enhance :taggable, &quot;BotTagging&quot; do
         def self.test_enhance_2
-          puts &quot;Testing&quot;
+          true
         end
       end
       BotTagging.should respond_to(&quot;test_enhance_2&quot;)
@@ -93,14 +88,9 @@ if HAS_SQLITE3 || HAS_MYSQL || HAS_POSTGRES
     end
     
     it &quot;should through exception when enhancing an unknown class&quot; do
-      begin
-        Article.enhance :taggable, &quot;NonExistentClass&quot; do
-          puts &quot;OMG!! I can enhance a class that is non-existent!!&quot;
-        end
-        false
-      rescue Exception =&gt; e
-        true
-      end
+      lambda {
+        Article.enhance :taggable, &quot;NonExistentClass&quot;
+      }.should raise_error
     end
     
     it &quot;should provided a map of Remixable Modules to Remixed Models names&quot; do</diff>
      <filename>dm-is-remixable/spec/integration/remixable_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>e39dcb5d2f8f17a57183c089053ec50061c41585</id>
    </parent>
  </parents>
  <author>
    <name>Abdul-Rahman Advany</name>
    <email>abdulrahman@advany.com</email>
  </author>
  <url>http://github.com/digitalhobbit/dm-more/commit/5cdff2cacf9dea73332bf3f91ad376d916894aa5</url>
  <id>5cdff2cacf9dea73332bf3f91ad376d916894aa5</id>
  <committed-date>2008-09-17T05:27:49-07:00</committed-date>
  <authored-date>2008-09-17T05:27:49-07:00</authored-date>
  <message>remove all the puts from the test and use correct rspec syntax</message>
  <tree>08c202c2ac4b8052438bde9b5c3af17e74227ef3</tree>
  <committer>
    <name>Abdul-Rahman Advany</name>
    <email>abdulrahman@advany.com</email>
  </committer>
</commit>
