Sha256: 3b09871d383b371bf06bcae59e666ca26266b96f144a905f162ebfb327fafdf3

Contents?: true

Size: 1.28 KB

Versions: 10

Compression:

Stored size: 1.28 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


Authors
-------

* Chris Wanstrath [chris@ozmm.org]
* Pat Nakajima [http://github.com/nakajima]

Version data entries

10 entries across 10 versions & 4 rubygems

Version Path
bmabey-fakefs-0.1.0 README.markdown
bmabey-fakefs-0.1.1 README.markdown
madpilot-fakefs-0.1.2 README.markdown
madpilot-fakefs-0.1.3 README.markdown
madpilot-fakefs-0.1.4 README.markdown
madpilot-fakefs-0.1.5 README.markdown
rsanheim-fakefs-0.0.1 README.markdown
rsanheim-fakefs-0.0.2 README.markdown
rsanheim-fakefs-0.1.0 README.markdown
fakefs-0.1.0 README.markdown