An open API service indexing awesome lists of open source software.

https://github.com/tcd/minitest-filesystem_assertions

Handy assertions about files & folders.
https://github.com/tcd/minitest-filesystem_assertions

Last synced: 11 months ago
JSON representation

Handy assertions about files & folders.

Awesome Lists containing this project

README

          

# Minitest::FilesystemAssertions

[![Gem](https://img.shields.io/gem/v/minitest-filesystem_assertions)][rubygems]
[![Build Status](https://travis-ci.org/tcd/minitest-filesystem_assertions.svg?branch=master)][travis-ci]
[![Coverage Status](https://coveralls.io/repos/github/tcd/minitest-filesystem_assertions/badge.svg?branch=master)][coveralls]
[![License](https://img.shields.io/github/license/tcd/minitest-filesystem_assertions)][license]
[![Documentation](http://img.shields.io/badge/docs-rubydoc.info-blue.svg)][docs]

[rubygems]: https://rubygems.org/gems/minitest-filesystem_assertions
[travis-ci]: https://travis_ci.org/tcd/minitest-filesystem_assertions
[coveralls]: https://coveralls.io/github/tcd/minitest-filesystem_assertions?branch=master
[license]: https://github.com/tcd/minitest-filesystem_assertions/blob/master/LICENSE.txt
[docs]: https://www.rubydoc.info/gems/minitest-filesystem_assertions/1.0.0

## Installation

Add this line to your application's `Gemfile`:

```ruby
gem "minitest-filesystem_assertions"
```

And then execute:

```
bundle
```

Or install it yourself as:

```
gem install minitest-filesystem_assertions
```

## Usage

Add this line in your `test_helper.rb` file:

```ruby
require "minitest/filesystem_assertions"
```

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/tcd/minitest-filesystem_assertions.

## Related Projects

- [stefanozanella/minitest-filesystem](https://github.com/stefanozanella/minitest-filesystem)
- *Minitest extension for testing filesystem contents.*
- Provides a custom DSL for describing filesystem expectations.
- [knut2/minitest-filecontent](https://github.com/knut2/minitest-filecontent)
- *Support unit tests with expectations in files*