<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -10,7 +10,7 @@ module StripAttributes
       end
     end
   end
-  
+
   # Necessary because Rails has removed the narrowing of attributes using :only
   # and :except on Base#attributes
   def self.narrow(attributes, options)
@@ -25,7 +25,7 @@ module StripAttributes
         attributes.slice(*only)
       else
         raise ArgumentError, &quot;Options does not specify :except or :only (#{options.keys.inspect})&quot;
-      end    
+      end
     end
   end
 end</diff>
      <filename>lib/strip_attributes.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,10 +2,11 @@ require &quot;#{File.dirname(__FILE__)}/test_helper&quot;
 
 module MockAttributes
   def self.included(base)
-    base.column :foo, :string
-    base.column :bar, :string
-    base.column :biz, :string
-    base.column :baz, :string
+    base.column :foo,  :string
+    base.column :bar,  :string
+    base.column :biz,  :string
+    base.column :baz,  :string
+    base.column :bang, :string
   end
 end
 
@@ -36,7 +37,7 @@ end
 
 class StripAttributesTest &lt; Test::Unit::TestCase
   def setup
-    @init_params = { :foo =&gt; &quot;\tfoo&quot;, :bar =&gt; &quot;bar \t &quot;, :biz =&gt; &quot;\tbiz &quot;, :baz =&gt; &quot;&quot; }
+    @init_params = { :foo =&gt; &quot;\tfoo&quot;, :bar =&gt; &quot;bar \t &quot;, :biz =&gt; &quot;\tbiz &quot;, :baz =&gt; &quot;&quot;, :bang =&gt; &quot; &quot; }
   end
 
   def test_should_exist
@@ -50,6 +51,7 @@ class StripAttributesTest &lt; Test::Unit::TestCase
     assert_equal &quot;bar&quot;, record.bar
     assert_equal &quot;biz&quot;, record.biz
     assert_nil record.baz
+    assert_nil record.bang
   end
 
   def test_should_strip_only_one_field
@@ -59,6 +61,7 @@ class StripAttributesTest &lt; Test::Unit::TestCase
     assert_equal &quot;bar \t &quot;, record.bar
     assert_equal &quot;\tbiz &quot;,  record.biz
     assert_equal &quot;&quot;,        record.baz
+    assert_equal &quot; &quot;,       record.bang
   end
 
   def test_should_strip_only_three_fields
@@ -68,6 +71,7 @@ class StripAttributesTest &lt; Test::Unit::TestCase
     assert_equal &quot;bar&quot;, record.bar
     assert_equal &quot;biz&quot;, record.biz
     assert_equal &quot;&quot;,    record.baz
+    assert_equal &quot; &quot;,   record.bang
   end
 
   def test_should_strip_all_except_one_field
@@ -77,6 +81,7 @@ class StripAttributesTest &lt; Test::Unit::TestCase
     assert_equal &quot;bar&quot;,   record.bar
     assert_equal &quot;biz&quot;,   record.biz
     assert_nil record.baz
+    assert_nil record.bang
   end
 
   def test_should_strip_all_except_three_fields
@@ -86,5 +91,6 @@ class StripAttributesTest &lt; Test::Unit::TestCase
     assert_equal &quot;bar \t &quot;, record.bar
     assert_equal &quot;\tbiz &quot;,  record.biz
     assert_nil record.baz
+    assert_nil record.bang
   end
 end</diff>
      <filename>test/strip_attributes_test.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>618e3c88cb5f12300f2f14086cc6a77920df0a87</id>
    </parent>
  </parents>
  <author>
    <name>Erik Bryn</name>
    <email>ebryn@marketmonitors.com</email>
  </author>
  <url>http://github.com/rmm5t/strip_attributes/commit/3448cfd0ad3aaa110dbca94b2f1dc741c8bc95e0</url>
  <id>3448cfd0ad3aaa110dbca94b2f1dc741c8bc95e0</id>
  <committed-date>2009-04-16T14:30:08-07:00</committed-date>
  <authored-date>2009-04-15T19:34:06-07:00</authored-date>
  <message>Added tests for solely whitespace filled strings</message>
  <tree>9a3b24852103968f2db34b4b65671227f9c334c9</tree>
  <committer>
    <name>Ryan McGeary</name>
    <email>ryanongit@mcgeary.org</email>
  </committer>
</commit>
