Sha256: d78e9dce3b7645c495f2373d00f8d522bb72138498ad3a2b8f61a686b07b31a5
Contents?: true
Size: 1.25 KB
Versions: 26
Compression:
Stored size: 1.25 KB
Contents
require File.join(File.dirname(__FILE__), "..", 'spec_helper.rb') describe Warden::Proxy::Errors do before(:each) do @errors = Warden::Proxy::Errors.new end it "should report that it is empty on first creation" do @errors.empty?.should == true end it "should continue to report that it is empty even after being checked" do @errors.on(:foo) @errors.empty?.should == true end it "should add an error" do @errors.add(:login, "Login or password incorrect") @errors[:login].should == ["Login or password incorrect"] end it "should allow many errors to be added to the same field" do @errors.add(:login, "bad 1") @errors.add(:login, "bad 2") @errors.on(:login).should == ["bad 1", "bad 2"] end it "should give the full messages for an error" do @errors.add(:login, "login wrong") @errors.add(:password, "password wrong") ["password wrong", "login wrong"].each do |msg| @errors.full_messages.should include(msg) end end it "should return the error for a specific field / label" do @errors.add(:login, "wrong") @errors.on(:login).should == ["wrong"] end it "should return nil for a specific field if it's not been set" do @errors.on(:not_there).should be_nil end end
Version data entries
26 entries across 26 versions & 2 rubygems