| CARVIEW |
Hi! defunkt is using GitHub to share code with you!
But GitHub is more than just a place to share code. It's a place to keep tabs on your favorite developers and projects, easily contribute fixes and new features, and visualize what's going on inside your codebase!
Every repository with this icon (
Every repository with this icon (
| Description: | A fake filesystem. Use it in your tests. edit |
| Homepage: | https://defunkt.github.com/fakefs/ edit |
| Public Clone URL: |
git://github.com/defunkt/fakefs.git
Give this clone URL to anyone.
git clone git://github.com/defunkt/fakefs.git
|
| Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:defunkt/fakefs.git
|
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Wed Oct 14 07:26:09 -0700 2009 | ignoring vim swap files [Ben Mabey] |
| |
CONTRIBUTORS | Fri Oct 30 10:03:44 -0700 2009 | update contributors [defunkt] |
| |
LICENSE | Fri May 29 11:24:36 -0700 2009 | add MIT license [defunkt] |
| |
README.markdown | Sat Nov 07 22:04:16 -0800 2009 | Cleanup trailing whitespace [smtlaissezfaire] |
| |
Rakefile | Fri Oct 30 10:02:41 -0700 2009 | ghetto-check the tests [defunkt] |
| |
lib/ | Sun Nov 08 10:17:57 -0800 2009 | Add NotImplementedErrors for missing methods on... [smtlaissezfaire] |
| |
spec/ | Sat Nov 07 22:04:16 -0800 2009 | Cleanup trailing whitespace [smtlaissezfaire] |
| |
test/ | Sun Nov 08 10:23:31 -0800 2009 | Fix a test for ruby 1.9.1 (question mark *must*... [smtlaissezfaire] |
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?
https://gist.github.com/156091
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: https://github.com/defunkt/fakefs
- Docs: https://defunkt.github.com/fakefs
- Bugs: https://github.com/defunkt/fakefs/issues
- List: https://groups.google.com/group/fakefs
- Test: https://runcoderun.com/defunkt/fakefs
- Gems: https://gemcutter.org/gems/fakefs
- Boss: Chris Wanstrath :: https://github.com/defunkt








