Sha256: c67ebcd9c1971c91c8b5d97c31decb37d95c739882fbc5c69610d8ef5d290711
Contents?: true
Size: 1.97 KB
Versions: 28
Compression:
Stored size: 1.97 KB
Contents
require File.expand_path(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 ContributorsController do describe "create" do it "should support adding new person / contributor / organization nodes" do mock_document = mock("document") ["person","conference","organization"].each do |type| mock_document.expects(:insert_contributor).with(type).returns(["foo node",989]) mock_document.expects(:save) ModsAsset.expects(:find).with("_PID_").returns(mock_document) post :create, :asset_id=>"_PID_", :controller => "contributors", :content_type => "mods_asset", :contributor_type=>type response.should redirect_to "http://test.host/catalog/_PID_/edit##{type}_989" end end it "should return inline html if format is inline" do mock_document = mock("document") ["person","conference","organization"].each do |type| mock_document.expects(:insert_contributor).with(type).returns(["foo node","foo index"]) mock_document.expects(:save) ModsAsset.expects(:find).with("_PID_").returns(mock_document) post :create, :asset_id=>"_PID_", :controller => "contributors", :content_type => "mods_asset", :contributor_type=>type, :format=>"inline" response.should render_template "contributors/_edit_#{type}" end end end describe "destroy" do it "should delete the contributor corresponding to contributor_type and index" do mock_dataset = mock("Dataset") mock_dataset.expects(:remove_contributor).with("conference", "3") mock_dataset.expects(:save) ModsAsset.expects(:find).with("_PID_").returns(mock_dataset) delete :destroy, :asset_id=>"_PID_", :content_type => "mods_asset", :contributor_type=>"conference", :index=>"3" end end end
Version data entries
28 entries across 28 versions & 1 rubygems