Sha256: c837d2ee973ffe9dab9ae673cf7b0da9aee2d68d16be2c2d91ffc337258f2bfc

Contents?: true

Size: 1.89 KB

Versions: 1

Compression:

Stored size: 1.89 KB

Contents

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


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.


Speed?
------
<http://gist.github.com/156091>


Installation
------------

### [Gemcutter](http://gemcutter.org/)

    $ gem install fakefs

### [Rip](http://hellorip.com)

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


Contributors
------------

* Chris Wanstrath
* David Reese
* Jeff Hodges
* Jon Yurek
* Matt Freels
* Myles Eftos
* Pat Nakajima
* Rob Sanheim
* Scott Taylor
* Tymon Tobolski
* msassak


Meta
----

* Code: `git clone git://github.com/defunkt/fakefs.git`
* 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>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fakefs-0.2.0 README.markdown