A fake filesystem. Use it in your tests.
Go to file
2009-12-04 04:38:44 -05:00
lib implement File::Stat#size 2009-12-02 03:18:09 -05:00
spec Cleanup trailing whitespace 2009-11-08 01:04:16 -05:00
test use require "test_helper" in *all* tests 2009-12-04 04:38:44 -05:00
.gitignore ignoring vim swap files 2009-10-14 23:10:52 +08:00
CONTRIBUTORS update contributors 2009-10-30 10:03:44 -07:00
LICENSE add MIT license 2009-05-29 11:24:36 -07:00
Rakefile Extract common requires in test files to test/test_helper.rb Run individual spec files with RUBYLIB=test ruby test/<test-file> (Thanks mislav) 2009-12-02 03:18:09 -05:00
README.markdown Update docs for proper usage of FakeFS::SpecHelpers 2009-11-23 23:34:59 -05:00

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

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

Meta