Sha256: 1874cbe178c80b5d3beb852443d3368beb5adc35d8625c297065cd0a5e2f57e0

Contents?: true

Size: 1.02 KB

Versions: 4

Compression:

Stored size: 1.02 KB

Contents

require 'spec_helper'

describe HostNameValidator do
  context "when host_name is invalid" do
    before :each do
      @server = Server.new(:host_name => "http://")
      I18n.stub(:t).with(:"activerecord.errors.models.server.attributes.host_name.invalid",
                         :default => :"activerecord.errors.messages.invalid").and_return("is invalid")
    end

    it "should set object as invalid" do
      @server.valid?.should be_false
    end

    it "should set an error" do
      @server.valid?
      @server.errors[:host_name].should == ['is invalid']
    end
  end

  context "when host_name is valid" do
    before :each do
      @server = Server.new(:host_name => "bd01")
    end

    it "should set object as valid" do
      @server.valid?.should be_true
    end

    it "should not set an error on attribute" do
      @server.valid?
      @server.errors[:host_name].should be_blank
    end
  end

  it "should be valid with a nil value" do
    @server = Server.new(:host_name => nil)
    @server.valid?.should be_true
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
validates_host-1.0.0 spec/validates_host/host_name_validator_spec.rb
validates_host-0.3.1 spec/validates_host/host_name_validator_spec.rb
validates_host-0.3.0 spec/validates_host/host_name_validator_spec.rb
validates_host-0.2.0 spec/validates_host.rb/host_name_validator_spec.rb