samg / fakefs forked from defunkt/fakefs
- Source
- Commits
- Network (25)
- Graphs
-
Tree:
1c6825f
tree a17bf1ffc1ad271410f0df84258f05344dd6d817
parent 01b0421c499f7577c6f3f46c65ec01fcb2921ef0
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Wed Oct 14 08:10:52 -0700 2009 | |
| |
CONTRIBUTORS | Wed Oct 07 01:38:08 -0700 2009 | |
| |
LICENSE | Fri May 29 11:24:36 -0700 2009 | |
| |
README.markdown | ||
| |
Rakefile | Tue Oct 06 21:32:54 -0700 2009 | |
| |
lib/ | ||
| |
test/ |
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 to this you may use the 'use_fakefs' macro to turn FakeFS on and off in a given example group. See lib/spec_helpers for more details on it's usage.
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?
Installation
Gemcutter
$ gem install fakefs
Rip
$ rip install git://github.com/defunkt/fakefs.git
Meta
- Code:
git clone git://github.com/defunkt/fakefs.git - Home: http://github.com/defunkt/fakefs
- Docs: http://defunkt.github.com/fakefs
- Bugs: http://github.com/defunkt/fakefs/issues
- List: http://groups.google.com/group/fakefs
- Test: http://runcoderun.com/defunkt/fakefs
- Gems: http://gemcutter.org/gems/fakefs
- Boss: Chris Wanstrath :: http://github.com/defunkt

