Project

specifier

0.0
No release in over 3 years
This should probably never be used.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 0
 Project Readme

Specifier

Installation

gem install specifier

Example

class Echo
  def say(message)
    message
  end
end
Specifier.specify Echo do
  let(:echo) { Echo.new }

  describe '#say' do
    it 'says "Hello" if you say "Hello"' do
      expect(echo.say('Hello')).to equal('Hello')
    end
  end
end

Usage

bundle exec specifier ./specs

Status

CircleCI CodeClimate (Maintainability) CodeClimate (Test Coverage)

Copyright

Copyright (c) 2016 - 2020 Kevin Sylvestre. See LICENSE for details.