bogdan / accept_values_for

Rspec matchers to test ActiveModel validation that follows BDD.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AcceptValuesFor

Writing specs for complex validations is annoying. AcceptValuesFor makes it easy to test your validations with real world values, asserting which values should be accepted by your model and which should not.

Read the original blog post.

Gem Version Build Status Code Climate

Usage

describe User do
  describe "validation" do
    subject(:user) { User.new }

    it { should accept_values_for(:email, "john@example.com", "jane@example.org") }
    it { should_not accept_values_for(:email, nil, " ", "john", "john@example") }
  end
end

Dependencies

  • Active Model (6, 7)
  • RSpec (3)

Installation

Gemfile

group :test do
  gem "accept_values_for"
end

Self-Promotion

Like AcceptValuesFor?

Watch the repository on GitHub and read my blog.

About

Rspec matchers to test ActiveModel validation that follows BDD.

License:MIT License


Languages

Language:Ruby 100.0%