GitXplorerGitXplorer
o

minispec-metadata

public
10 stars
9 forks
2 issues

Commits

List of commits on branch main.
Unverified
a5d0cf02c090469c882f61f50776e273985a402e

Update README. More specific gemspec development dependencies.

oordinaryzelig committed a year ago
Unverified
ca1c4af33ea8a32b703c8ef4df1cb2a9ea068167

Remove some warnings.

oordinaryzelig committed a year ago
Unverified
4612fbb2d2519c108ccec1f481dbf6ce838893b5

Credit.

oordinaryzelig committed a year ago
Unverified
2c8fc006cb0e697add72beac28c3946ce631b1a4

Merge branch 'fix/fix_deprecations_of_must_equal'

oordinaryzelig committed a year ago
Unverified
1b19ad920f8658db6a461c142071b53309bfb8af

Update version.

oordinaryzelig committed a year ago
Unverified
7160dc48e024064e41bd9e26bbf87d6d80a17898

Missed one deprecation warning.

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.