Sha256: 2916d2c9dcb6feb2d337686c503ef4e5e02c8bacd747e31d18cb1059625cf37e

Contents?: true

Size: 1.77 KB

Versions: 1

Compression:

Stored size: 1.77 KB

Contents

# MiMoCo

[![Gem Version](https://badge.fury.io/rb/mimoco.png)](http://badge.fury.io/rb/mimoco)

Mimoco (MInitest MOdels COntrollers) DRY
your tests by specifying some (trivial) of them via a table.

Mimoco doesn't replace the "assert"s of MiniTest.
It is more a kind of a quick and dirty check.
Still, it has demonstrated to be useful, in particular,
to detect code changes which often went unseen.

## Installation

As usual:
```ruby
# Gemfile
gem "mimoco"
```
and run "bundle install".

## Usage for Models

```ruby
require "test_helper"
require "mimoco"

class ModelsTest < Minitest::Test
  def test_some
    models = {
      Order => {
        valid: {name: "Name", qty: 123},
        invalid: {qty: :abc},
        class_methods: %i[class_method],
        call_class_methods: %i[class_method],
        public_methods: %i[public_method],
        call_public_methods: %i[public_method]
      },
      Article => ...
    }

    check_models models
  end
end
```

Furthermore, "valids" and "invalids" accepts an array
of hashes to create models to be checked.

"call_public_methods" requires a "valid" item
to instantiated a model used to applicate the methods.

## Usage for Controllers

```ruby
require "test_helper"
require "mimoco"

class ControllersTest < ActionDispatch::IntegrationTest
  def test_some
    controllers = {
      OrdersController => {
        respond_to: %i[create destroy edit index new show update],
        class_methods: %i[class_method],
        call_class_methods: %i[class_method],
        public_methods: %i[create destroy edit index new show update]
      }
      ArticlesController => ...
    }

    check_controllers controllers
  end
end
```

## Miscellaneous

Copyright (c) 2022 Dittmar Krall (www.matiq.com),
released under the MIT license:

* https://opensource.org/licenses/MIT

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mimoco-0.3.1 README.md