Sha256: 1ab185da89945585cb5eb94d64a6b0f53ad5384c99aeb08897da319ec1a69925

Contents?: true

Size: 984 Bytes

Versions: 1

Compression:

Stored size: 984 Bytes

Contents

require 'spec_helper'

describe CpfValidator do
  before(:each) do
    @validator = CpfValidator.new(attributes: 'cpf')
    @mock = double('model')
    allow(@mock).to receive(:errors).and_return([])
    allow(@mock.errors).to receive(:messages).and_return({})
    allow(@mock.errors).to receive(:add) do |attribute, error|
      @mock.errors.messages[attribute] = [error]
    end
  end

  subject { @validator }

  context 'when Cpf is valid' do
    it "doesn't add errors in model" do
      subject.validate_each(@mock, 'cpf', '01233254120')
      expect(@mock.errors.messages).to be_empty
    end
  end

  context 'when Cpf is blank' do
    it "doesn't add errors in model" do
      subject.validate_each(@mock, 'cpf', '')
      expect(@mock.errors.messages).to be_empty
    end
  end

  context 'when Cpf is invalid' do
    it 'adds errors in model' do
      subject.validate_each(@mock, 'cpf', '01233254121')
      expect(@mock.errors.messages).to_not be_empty
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
br_documents-0.2.0 spec/cpf_validator_spec.rb