Sha256: c49212f38807f79a686c6bd4f106caa3b987de9e3f165e74fe6497c5299235d0
Contents?: true
Size: 1.73 KB
Versions: 8
Compression:
Stored size: 1.73 KB
Contents
require File.expand_path( File.join( File.dirname(__FILE__),'..','spec_helper') ) # See cucumber tests (ie. /features/edit_document.feature) for more tests, including ones that test the edit method & view # You can run the cucumber tests with # # cucumber --tags @edit # or # rake cucumber describe Hydra::RepositoryController do describe "load_document_from_params" do it "should choose which model to use based on submitted params" do mock_model_class = mock("model class") mock_model_class.expects(:find).with("object id") helper.stubs(:params).returns( {:content_type => "preferred model", :id => "object id"} ) helper.expects(:retrieve_af_model).with("preferred model").returns(mock_model_class) helper.load_document_from_params end end describe "format_pid" do it "convert pids into XHTML safe strings" do pid = helper.format_pid("hydra:123") pid.should match(/hydra_123/) end end describe "retrieve_af_model" do it "should return a Model class if the named model has been defined" do result = helper.retrieve_af_model("file_asset") result.should == FileAsset result.superclass.should == ActiveFedora::Base result.included_modules.should include(ActiveFedora::Model) end it "should accept camel cased OR underscored model name" do result = helper.retrieve_af_model("generic_content") result.should == GenericContent result = helper.retrieve_af_model("GenericContent") result.should == GenericContent end it "should return false if the name is not a real class" do result = helper.retrieve_af_model("foo_foo_class_class") result.should be_false end end end
Version data entries
8 entries across 8 versions & 1 rubygems