Sha256: 833b596e9bcaff364b6661b9854235349b66ece95e48146b32d7f11a5feaf2f2

Contents?: true

Size: 1.72 KB

Versions: 3

Compression:

Stored size: 1.72 KB

Contents

Validation Matcher [![code climate][cc-image]][cc] [![build status][ci-image]][ci] [![gem version][gem-image]][gem]
===================================================================================================================

About
-----

Use Rails validation reflection to test validations.

URLs:

- Github:             https://github.com/bm5k/validation_matcher/
- Documentation:      http://rubydoc.info/github/BM5k/validation_matcher/master/frames
- RubyGems:           https://rubygems.org/gems/validation_matcher

Installation
------------

Add to your Gemfile and run the `bundle` command to install it.

  ```ruby
  gem 'validation_matcher'
  ```

- specify '~> 1.1.0' for rails 4 & rspec 2
- specify '~> 1.0.0' for rails 3 & rspec 2

**Requires Ruby 1.9.2 or later.**

Usage
-----

  ```ruby
  class Foo < ActiveRecord::Base
    validates :field_a, presence: true
    validates :field_b, uniquness: true
    validates :field_c, presence: true, uniquness: {case_insensitive: false}
  end

  require 'spec_helper'

  describe Foo do
    it { should validate(:presence).of(:field_a) }
    it { should validate(:presence).of(:field_b) }
    it { should validate(:presence).of(:field_c).with(case_insensitive: false) }
    it { should validate(:uniqueness).of(:field_b).with(options) }
  end
  ```

<!-- links -->
[cc]: https://codeclimate.com/github/BM5k/validation_matcher "code climate"
[ci]: http://travis-ci.org/BM5k/validation_matcher "build status"
[gem]: http://badge.fury.io/rb/validation_matcher "gem version"

<!-- images -->
[cc-image]: https://codeclimate.com/github/BM5k/validation_matcher.svg
[ci-image]: https://secure.travis-ci.org/BM5k/validation_matcher.svg?branch=master
[gem-image]:https://badge.fury.io/rb/validation_matcher.svg

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
validation_matcher-3.0.0 README.md
validation_matcher-2.0.1 README.md
validation_matcher-2.0.0 README.md