<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -95,8 +95,8 @@ module Piston
     end
 
     # Recalls a Hash of values from the working copy.
-    # The expected keys are passed as parameters.
-    def recall(keys)
+    def recall
+      YAML.load(File.read(yaml_path))
     end
 
     def finalize
@@ -110,4 +110,3 @@ module Piston
     end
   end
 end
-</diff>
      <filename>lib/piston/working_copy.rb</filename>
    </modified>
    <modified>
      <diff>@@ -38,4 +38,11 @@ class TestWorkingCopyRememberance &lt; Test::Unit::TestCase
     actual = YAML.load((@wcdir + &quot;.piston.yml&quot;).read)
     assert_equal values.merge(&quot;format&quot; =&gt; 1, &quot;handler&quot; =&gt; handler_values), actual
   end
+
+  def test_recall_returns_hash_of_values
+    values = {&quot;a&quot; =&gt; &quot;b&quot;, &quot;handler&quot; =&gt; {&quot;b&quot; =&gt; &quot;c&quot;}}
+    File.expects(:read).with(@wcdir + &quot;.piston.yml&quot;).returns(:data)
+    YAML.expects(:load).with(:data).returns(values)
+    assert_equal values, @wc.recall
+  end
 end</diff>
      <filename>test/unit/test_working_copy_rememberance.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>b6776eee6a822c7644b49807e3060d794fed93cf</id>
    </parent>
  </parents>
  <author>
    <name>Fran&#231;ois Beausoleil</name>
    <email>francois@teksol.info</email>
  </author>
  <url>http://github.com/francois/piston/commit/e90f935a38bb88f37da5a3ba849531173c107413</url>
  <id>e90f935a38bb88f37da5a3ba849531173c107413</id>
  <committed-date>2008-04-17T10:52:40-07:00</committed-date>
  <authored-date>2008-04-17T10:52:40-07:00</authored-date>
  <message>Piston::WorkingCopy#recall returns saved values.</message>
  <tree>0755fdbf6d95bc51b4ec83248c2d10c676a80f46</tree>
  <committer>
    <name>Fran&#231;ois Beausoleil</name>
    <email>francois@teksol.info</email>
  </committer>
</commit>
