Coder Social home page Coder Social logo

specstar-models's Introduction

This package helps you check that the attributes and validations of a model have been defined correctly. It also includes the specstar-remarkable gem which defines matchers for associations.

Matchers

have_attribute

You may have created a model Store as follows:

class CreateStores < ActiveRecord::Migration
  def change
    create_table :stores do |t|
      t.string :title
      t.string :body, :null => false
      t.string :url, :limit => 1024
      t.boolean :open
    end
  end
end

The have_attribute matcher allows you test each of these attributes as follows:

require 'spec_helper'

describe Store do
  it { should have_attribute(:title) }
  it { should have_attribute(:body).with(:type => :string, :null => false) }
  it { should have_attribute(:url).with(:type => :string, :limit => 1024) }
  it { should have_attribute(:open).with(:type => :boolean) }
end

validate_inclusion_of

You may have a model User as follows:

class User < ActiveRecord::Base
  ...
  validates_inclusion_of :verified, in: [true, false]
  ...
end

This matcher allows you to write the following spec:

require 'spec_helper'

describe User do
  it { should validate_inclusion_of :verfied, in: [true, false] }
end

validate_numericality_of You may have a model User as follows:

class User < ActiveRecord::Base
  ...
  validates_numericality_of :age, greater_than_or_equal_to: 0
  ...
end

This matcher allows you to write the following spec:

require 'spec_helper'

describe User do
  it { should validate_numericality_of :age, greater_than_or_equal_to: 0 }
end

validate_presence_of

You may have a model User as follows:

class User < ActiveRecord::Base
  ...
  validates_presence_of :email
  ...
end

This matcher allows you to write the following spec:

require 'spec_helper'

describe User do
  it { should validate_presence_of :email }
end

validate_uniqueness_of

You may have a model User as follows:

class User < ActiveRecord::Base
  ...
  validates_uniqueness_of :email
  ...
end

This matcher allows you to write the following spec:

require 'spec_helper'

describe User do
  it { should validate_uniqueness_of :email }
end

Using

To make these matchers available in your model specs, do the following:

Gemfile

group :test do
  ...
  gem 'specstar-models', '~> 0.0.4'
  ...
end

spec/spec_helper.rb

require 'specstar/models'

RSpec.configure do |config|
  ...
  config.include Specstar::Models::Matchers, :type => :model
  ...
end

Related Tools

You may also want to consider the following gems to help with your specs:

  • specstar-controllers: Matchers for checking that the filters and layouts in a controller have been defined correctly. Learn more here. Released gems are here.
  • specstar-support-random: Utility methods for generating random objects (e.g. URLs, emails, hashes) for use in your specs. Learn more here. Released gems are here.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.