No release in over 3 years
Low commit activity in last 3 years
incremental_factory_names generates incremental factory names for preventing randomly failure specs
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 5.0.2
~> 12.3.3
~> 3.8.0
 Project Readme

incremental_factory_names helps generate incremental factory names for preventing randomly failure specs

Installation

Add this line to your application's Gemfile:

gem 'incremental_factory_names'

And then execute:

$ bundle

Or install it yourself as:

$ gem install incremental_factory_names

Testing

Simply run with rake

rake

Usage

spec/spec_helper.rb or another place you have for including modules:

include IncrementalFactoryNames

and in any factory you need to have incremental names:

factory :user do
  ...	
  incremental_factory_name :name # returns 'User 001', 'User 002', etc
  ...

with additional params:

  ...
  incremental_factory_name :name, name: 'Name' # returns 'Name 001', 'Name 002', etc
  ...
  incremental_factory_name :name, length: 5 # returns 'User 00001', 'User 00002', etc
  ...

Contributing

Bug reports and pull requests are welcome on GitHub at incremental_factory_names. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.