fakefs/README.markdown

131 lines
2.7 KiB
Markdown
Raw Normal View History

2009-05-29 18:24:42 +00: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
2009-05-29 18:24:42 +00:00
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.
2009-07-27 06:56:51 +00:00
Usage
-----
2009-07-27 06:58:46 +00:00
require 'fakefs'
2009-07-27 06:56:51 +00:00
2009-07-27 06:58:46 +00:00
# That's it.
2009-07-27 06:56:51 +00:00
Don't Fake the FS Immediately
-----------------------------
2009-07-27 06:58:46 +00:00
require 'fakefs/safe'
2009-11-08 06:04:16 +00:00
2009-07-27 06:58:46 +00:00
FakeFS.activate!
# your code
2009-07-27 06:59:54 +00:00
FakeFS.deactivate!
2009-11-08 06:04:16 +00:00
2009-07-27 06:58:46 +00:00
# or
FakeFS do
# your code
end
2009-07-27 06:56:51 +00:00
2011-09-05 20:31:23 +00:00
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
2010-01-12 02:10:23 +00:00
-----
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
2010-01-12 02:10:23 +00:00
See `lib/fakefs/spec_helpers.rb` for more info.
2009-07-27 06:56:51 +00:00
2009-05-29 18:24:42 +00:00
How is this different than MockFS?
----------------------------------
FakeFS provides a test suite and works with symlinks. It's also strictly a
2009-05-29 18:24:42 +00:00
test-time dependency: your actual library does not need to use or know about
FakeFS.
2009-07-20 14:01:48 +00:00
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.
2009-07-20 14:01:48 +00:00
Speed?
------
2010-01-12 02:10:23 +00:00
<http://gist.github.com/156091>
2009-07-20 14:01:48 +00:00
Installation
------------
2009-05-29 18:24:42 +00:00
### [Gemcutter](http://gemcutter.org/)
$ gem install fakefs
### [Rip](http://hellorip.com)
$ rip install git://github.com/defunkt/fakefs.git
2010-01-12 02:10:23 +00:00
Contributing
------------
Once you've made your great commits:
1. [Fork][0] 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][1] with a link to your branch
5. That's it!
Meta
----
* Code: `git clone git://github.com/defunkt/fakefs.git`
2009-10-07 05:00:06 +00:00
* Home: <http://github.com/defunkt/fakefs>
* Docs: <http://defunkt.github.com/fakefs>
* Bugs: <http://github.com/defunkt/fakefs/issues>
2009-10-07 04:12:14 +00:00
* List: <http://groups.google.com/group/fakefs>
* Test: <http://runcoderun.com/defunkt/fakefs>
2009-10-07 04:12:14 +00:00
* Gems: <http://gemcutter.org/gems/fakefs>
2010-01-12 02:10:23 +00:00
[0]: http://help.github.com/forking/
[1]: http://github.com/defunkt/fakefs/issues