Sha256: 36c0f2414b8699fda294d6556183cbc68bfc9b094bfefa968ff5348c8db6f78c

Contents?: true

Size: 1.06 KB

Versions: 4

Compression:

Stored size: 1.06 KB

Contents

require 'spec_helper'

describe NdlBooksController do
  fixtures :all

  it "should be a kind of enju_ndl" do
    assert_kind_of Module, EnjuNdl
  end

  describe "GET index" do
    login_fixture_admin

    it "should get index", :vcr => true do
      get :index, :query => 'library'
      assigns(:books).should_not be_empty
    end

    it "should be empty if a query is not set", :vcr => true do
      get :index
      assigns(:books).should be_empty
    end
  end

  describe "POST create" do
    login_fixture_admin

    it "should create a bibliographic record if jpno is set", :vcr => true do
      post :create, :book => {:iss_itemno => 'R100000002-I000002539673-00'}
      assigns(:manifestation).identifier_contents(:jpno).should eq ['97024234']
      response.should redirect_to manifestation_url(assigns(:manifestation))
    end

    it "should not create a bibliographic record if jpno is not set", :vcr => true do
      post :create, :book => {:jpno => nil}
      assigns(:manifestation).should be_nil
      response.should redirect_to ndl_books_url
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
enju_ndl-0.1.0.pre34 spec/controllers/ndl_books_controller_spec.rb
enju_ndl-0.1.0.pre33 spec/controllers/ndl_books_controller_spec.rb
enju_ndl-0.1.0.pre32 spec/controllers/ndl_books_controller_spec.rb
enju_ndl-0.1.0.pre31 spec/controllers/ndl_books_controller_spec.rb