GitXplorerGitXplorer
o

minispec-metadata

public
10 stars
9 forks
2 issues

Commits

List of commits on branch main.
Unverified
6cbd791d0507e6bcaee682bf74abb78ec843e493

Merge branch 'main' into fix/fix_deprecations_of_must_equal

oordinaryzelig committed a year ago
Unverified
7193af64434e2d21eceea706418ffd4c9c6a7ac6

Fix parallelize_me call.

oordinaryzelig committed a year ago
Unverified
96955c243d7abfd46e3a5d414e687821b47b0c33

Document/credit Minitest naming,

oordinaryzelig committed a year ago
Unverified
040c49d96ecb1261740a0e97bcc1cacd4d5a5464

Bump version.

oordinaryzelig committed a year ago
Unverified
f3863bd7b1d324e3ab1b592f53348a82687c87dd

Convert remaining use of MiniTest to Minitest.

oordinaryzelig committed a year ago
Unverified
50357f2ac3d06e3a49dbbbedd7d49365f78de3ce

Remove Minitest::VERSIONS.

oordinaryzelig committed a year ago

README

The README file for this repository.

Minispec::Metadata

https://github.com/ordinaryzelig/minispec-metadata

Usage

# readme.spec.rb
require 'minitest/autorun'
require 'minispec-metadata'

describe 'Usage', some: 'metadata' do

  before do
    # Example usefulness:
    # Capybara.current_driver = metadata[:driver]
  end

  it 'defines a metadata method', more: 'metadata' do
    _(metadata).must_equal(
      some: 'metadata',
      more: 'metadata',
    )
  end

  it 'gives priority to closest metadata', some: 'different metadata' do
    _(metadata).must_equal(
      some: 'different metadata',
    )
  end

  it 'provides a method to get the description of the spec' do
    _(desc).must_equal 'provides a method to get the description of the spec'
  end

  describe MinispecMetadata, 'additional description' do

    it 'provides a method to get the descriptions' do
      _(self.class.descs).must_equal [MinispecMetadata, 'additional description']
    end

    it 'provides a method to get only the additional description' do
      _(self.class.additional_desc).must_equal ['additional description']
    end

    it 'is not needed to get the described object' do
      # This is built in to Minitest, you don't need this gem to do this.
      _(self.class.desc).must_equal MinispecMetadata
    end

    it 'treats additional descriptions as metadata too', meta: 'data' do
      _(metadata).must_equal(
        :some                    => 'metadata',
        'additional description' => true,
        :meta                    => 'data',
      )
    end

  end

  # Thanks to @mfpiccolo for this.
  it 'allows array of symbols like RSpec', :these, :work, :too do
    _(metadata[:these]).must_equal true
    _(metadata[:work]).must_equal true
    _(metadata[:too]).must_equal true
  end

end

Another great use is to do a version of Ryan Bates' VCR trick.

describe 'VCR trick' do
  it 'allows you to name your cassettes the same as the spec' do
    VCR.use_cassette desc do
    end
  end
end

Tags

(Only for Ruby >= 2 and Minitest >= 5)

Use the --tag TAG or -tTAG option to focus on certain tests according to metadata (will match both string/symbol as key/value). E.g. Run only the slow tests below with option --tag js:

describe 'integration tests' do
  it 'runs super slow JS stuff', :js do
    # Will run.
  end
  it 'runs fast stuff' do
    # Will not run.
  end
end

You can use --tag more than once to include more tags to be run (any matching tags will run).

If an exclusive tag, e.g. ~slow, is used alone, all tests except those tagged slow will be run. If an exclusive tag is used in addition to any inclusive tags, then the exclusive tag will just filter those included.

Note that when using rake, you need to wrap Minitest's options like this: rake test TESTOPTS='--tag js'.

Installation

Add this line to your application's Gemfile:

gem 'minispec-metadata'

And then execute:

$ bundle

Or install it yourself:

$ gem install minispec-metadata

Rails

There are things you MUST do to get Minitest::Spec to work with rails that this gem cannot do for you. There are a handful of gems that will help you including my minispec-rails gem. Whatever path you decide to take, do this AFTER you've taken those steps:

require 'minispec-metadata/rails'

(Thanks to @fredngo for help with testing with Rails.)

Compatibility

Tested with Minitest 5, Ruby version 3, Rails version 5.1.