A fake filesystem. Use it in your tests.
Go to file
John Bintz 1b88eccb5f merge up to master 2011-11-08 06:45:33 -05:00
lib merge up to master 2011-11-08 06:45:33 -05:00
spec Cleanup trailing whitespace 2009-11-08 01:04:16 -05:00
test merge up to master 2011-11-08 06:45:33 -05:00
.autotest Add .autotest 2010-01-11 23:08:44 -05:00
.gitignore Add Gemfile.lock to .gitignore (Closes #84) 2011-09-05 14:38:46 -04:00
.rspec add .rspec file to run specs with color 2011-05-02 21:39:52 -04:00
CONTRIBUTORS Update contributors 2011-09-05 17:50:29 -04:00
Gemfile add dev dependencies: jeweler, sdoc-helpers, rdiscount 2011-05-02 22:02:59 -04:00
LICENSE add MIT license 2009-05-29 11:24:36 -07:00
README.markdown Add releasing notes 2011-09-05 18:08:15 -04:00
Rakefile Update rake tasks to use rspec 2. 2011-05-02 21:39:52 -04:00
fakefs.gemspec Update gemspec for 0.4.0 2011-09-05 17:55:55 -04:00
test.watchr flock can't break 2011-05-21 10:10:23 -04:00

README.markdown

FakeFS

Mocha is great. But when your library is all about manipulating the filesystem, you really want to test the behavior and not the implementation.

If you're mocking and stubbing every call to FileUtils or File, you're tightly coupling your tests with the implementation.

def test_creates_directory
  FileUtils.expects(:mkdir).with("directory").once
  Library.add "directory"
end

The above test will break if we decide to use mkdir_p in our code. Refactoring code shouldn't necessitate refactoring tests.

With FakeFS:

def test_creates_directory
  Library.add "directory"
  assert File.directory?("directory")
end

Woot.

Usage

require 'fakefs'

# That's it.

Don't Fake the FS Immediately

require 'fakefs/safe'

FakeFS.activate!
# your code
FakeFS.deactivate!

# or
FakeFS do
  # your code
end

Rails

If you are using fakefs in a rails project with bundler, you'll probably want to specify the following in your Gemfile:

gem "fakefs", :require => "fakefs/safe"

RSpec

The above approach works with RSpec as well. In addition you may include FakeFS::SpecHelpers to turn FakeFS on and off in a given example group:

require 'fakefs/spec_helpers'

describe "my spec" do
  include FakeFS::SpecHelpers
end

See lib/fakefs/spec_helpers.rb for more info.

How is this different than MockFS?

FakeFS provides a test suite and works with symlinks. It's also strictly a test-time dependency: your actual library does not need to use or know about FakeFS.

Caveats

FakeFS internally uses the Pathname and FileUtils constants. If you use these in your app, be certain you're properly requiring them and not counting on FakeFS' own require.

Speed?

http://gist.github.com/156091

Installation

Gemcutter

$ gem install fakefs

Rip

$ rip install git://github.com/defunkt/fakefs.git

Contributing

Once you've made your great commits:

  1. Fork FakeFS
  2. Create a topic branch - git checkout -b my_branch
  3. Push to your branch - git push origin my_branch
  4. Create an Issue with a link to your branch
  5. That's it!

Meta

Releasing

  1. Update version in lib/fakefs/version.rb
  2. Commit it
  3. rake publish