spec/exceptions_spec.rb in egregious-0.1.5 vs spec/exceptions_spec.rb in egregious-0.1.6
- old
+ new
@@ -1,22 +1,36 @@
require 'spec_helper'
require 'json'
require 'hpricot'
+require 'htmlentities'
describe Exception do
it "should output valid xml on to_xml" do
doc = Hpricot.XML(Exception.new("Yes").to_xml)
(doc/:errors).each do |error|
(error/:error).inner_html.should=='Yes'
(error/:type).inner_html.should=='Exception'
end
end
+ it "should output valid xml on to_xml with values to escape" do
+ doc = Hpricot.XML(Exception.new('<a title="1<2"/>').to_xml)
+ (doc/:errors).each do |error|
+ HTMLEntities.new.decode((error/:error).inner_html).should=='<a title="1<2"/>'
+ end
+ end
+
it "should output be valid json on to_json" do
result = JSON.parse(Exception.new("Yes").to_json)
result['error'].should == "Yes"
result['type'].should == "Exception"
end
+
+ it "should output be valid json on to_json with quotes" do
+ result = JSON.parse(Exception.new('Yes "its good"').to_json)
+ result['error'].should == 'Yes "its good"'
+ end
+
it "should parse module names out" do
module X
module Y
class Z < Exception
\ No newline at end of file