GithubHelp home page GithubHelp logo

Comments (4)

smtlaissezfaire avatar smtlaissezfaire commented on July 20, 2024

It looks like you generated this patch with git-format-patch, but haven't set your email address (with git config), which makes it unappliable with git-am.

Could you set your email address & regenerate the patch with git-format-patch? Instructions for doing so are here:

http://help.github.com/git-email-settings/

from fakefs.

ursm avatar ursm commented on July 20, 2024

Oh, sorry. Is this OK?

From f12de1b467c46e04677b44d248d1557e34f865ba Mon Sep 17 00:00:00 2001
From: Keita Urashima <[email protected]>
Date: Wed, 25 Nov 2009 01:21:25 +0900
Subject: [PATCH] FileUtils.rm should be able to delete two or more files

---
 lib/fakefs/fileutils.rb |    6 ++++--
 test/fakefs_test.rb     |    7 +++++++
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/lib/fakefs/fileutils.rb b/lib/fakefs/fileutils.rb
index bb61c07..34fec0e 100644
--- a/lib/fakefs/fileutils.rb
+++ b/lib/fakefs/fileutils.rb
@@ -19,8 +19,10 @@ module FakeFS
       end
     end
 
-    def rm(path)
-      FileSystem.delete(path)
+    def rm(list, options = {})
+      Array(list).each do |path|
+        FileSystem.delete(path)
+      end
     end
 
     alias_method :rm_rf, :rm
diff --git a/test/fakefs_test.rb b/test/fakefs_test.rb
index ab4e0e2..8e31376 100644
--- a/test/fakefs_test.rb
+++ b/test/fakefs_test.rb
@@ -37,6 +37,13 @@ class FakeFSTest < Test::Unit::TestCase
     assert File.exists?("/path/to/dir") == false
   end
 
+  def test_can_delete_multiple_files
+    FileUtils.touch(["foo", "bar"])
+    FileUtils.rm(["foo", "bar"])
+    assert File.exists?("foo") == false
+    assert File.exists?("bar") == false
+  end
+
   def test_knows_directories_exist
     FileUtils.mkdir_p(path = "/path/to/dir")
     assert File.exists?(path)
-- 
1.6.5.3

from fakefs.

ursm avatar ursm commented on July 20, 2024

or, please pull from here.
http://github.com/ursm/fakefs

from fakefs.

smtlaissezfaire avatar smtlaissezfaire commented on July 20, 2024

Cool - thanks. I'll look into applying it tonight.

from fakefs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.