Sha256: 554a2ac6cb0aee28dd6d05f2dced1209ff12d1d0606e518b3cc5990d295a7d1d
Contents?: true
Size: 1.63 KB
Versions: 1
Compression:
Stored size: 1.63 KB
Contents
require 'spec_helper' describe "GoogleApps::DocumentHandler" do let (:handler) { GoogleApps::DocumentHandler.new } let (:documents) { to_meth GoogleApps::Atom::Document.types } describe "#create_doc" do it "Returns a XML document when given xml and @format is :atom" do handler.create_doc(finished_export, :export).should be_a LibXML::XML::Document end it "Returns a XML document when given xml and @format is :xml" do handler.create_doc(finished_export, :export).should be_a LibXML::XML::Document end end describe "#unknown_type" do it "Returns an XML Document when given a string and @format is :atom" do handler.unknown_type(finished_export).should be_a LibXML::XML::Document end it "Returns an XML Document when given a string and @format is :xml" do handler.unknown_type(finished_export).should be_a LibXML::XML::Document end end describe "#doc_of_type" do it "Returns an object of the specified type if the type is valid for the format" do user = handler.doc_of_type File.read('spec/fixture_xml/user.xml'), :user user.should be_a GoogleApps::Atom::User end it "Raises a RuntimeError if the type is not valid for the format" do lambda { handler.doc_of_type :goat, File.read('spec/fixture_xml/user.xml') }.should raise_error end end describe "#look_up_doc_types" do it "Returns a list of all Atom documents when @format is :atom" do handler.send(:look_up_doc_types).should == documents end it "Returns a list of all Atom documents when @format is :xml" do handler.send(:look_up_doc_types).should == documents end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
google_apps-0.9 | spec/google_apps/document_handler_spec.rb |