Sha256: 6ffd1e3a878303227ad24e53a5bb1434ff79a7ec12e95951c1861b8f4dc2e0ee

Contents?: true

Size: 956 Bytes

Versions: 21

Compression:

Stored size: 956 Bytes

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.

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.

Authors
-------

Chris Wanstrath [chris@ozmm.org]

Version data entries

21 entries across 21 versions & 2 rubygems

Version Path
Sutto-perennial-0.1.0 vendor/fakefs/README.markdown
Sutto-perennial-0.2.0 vendor/fakefs/README.markdown
Sutto-perennial-0.2.1 vendor/fakefs/README.markdown
Sutto-perennial-0.2.2.1 vendor/fakefs/README.markdown
Sutto-perennial-0.2.2.2 vendor/fakefs/README.markdown
Sutto-perennial-0.2.2.3 vendor/fakefs/README.markdown
Sutto-perennial-0.2.2 vendor/fakefs/README.markdown
Sutto-perennial-0.2.3.0 vendor/fakefs/README.markdown
Sutto-perennial-0.2.3.1 vendor/fakefs/README.markdown
Sutto-perennial-0.2.3.2 vendor/fakefs/README.markdown
Sutto-perennial-0.2.3.3 vendor/fakefs/README.markdown
Sutto-perennial-0.2.3.4 vendor/fakefs/README.markdown
Sutto-perennial-0.2.3.5 vendor/fakefs/README.markdown
Sutto-perennial-0.2.3.6 vendor/fakefs/README.markdown
Sutto-perennial-0.2.3.7 vendor/fakefs/README.markdown
Sutto-perennial-0.2.4.0 vendor/fakefs/README.markdown
Sutto-perennial-0.2.4.1 vendor/fakefs/README.markdown
Sutto-perennial-0.2.4.5 vendor/fakefs/README.markdown
Sutto-perennial-0.2.4.6 vendor/fakefs/README.markdown
Sutto-perennial-1.0.0.0 vendor/fakefs/README.markdown