require File.expand_path(File.dirname(__FILE__) + "/../spec_helper") describe Braintree::ValidationError do describe "initialize" do it "works" do error = Braintree::ValidationError.new :attribute => "some model attribute", :code => 1, :message => "bad juju" error.attribute.should == "some model attribute" error.code.should == 1 error.message.should == "bad juju" end end describe "inspect" do it "is pretty" do error = Braintree::ValidationError.new :attribute => "number", :code => "123456", :message => "Number is bad juju." error.inspect.should == "#" end end end