enju_library 0.1.0.pre33 → 0.1.0.pre34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/accepts_controller.rb +14 -14
- data/app/controllers/baskets_controller.rb +15 -21
- data/app/controllers/libraries_controller.rb +12 -12
- data/app/controllers/library_groups_controller.rb +5 -6
- data/app/controllers/shelves_controller.rb +17 -17
- data/app/controllers/subscribes_controller.rb +10 -10
- data/app/controllers/subscriptions_controller.rb +11 -11
- data/app/models/accept.rb +7 -12
- data/app/models/basket.rb +6 -6
- data/app/models/bookstore.rb +2 -2
- data/app/models/budget_type.rb +1 -1
- data/app/models/library.rb +8 -8
- data/app/models/library_group.rb +5 -21
- data/app/models/request_status_type.rb +1 -1
- data/app/models/request_type.rb +1 -1
- data/app/models/search_engine.rb +6 -6
- data/app/models/shelf.rb +5 -5
- data/app/models/subscribe.rb +3 -3
- data/app/models/subscription.rb +5 -5
- data/app/views/accepts/_form.html.erb +1 -1
- data/app/views/accepts/_list.html.erb +3 -3
- data/app/views/accepts/edit.html.erb +1 -1
- data/app/views/accepts/index.html.erb +6 -6
- data/app/views/accepts/{index.csv.erb → index.txt.csv} +0 -0
- data/app/views/accepts/new.html.erb +1 -1
- data/app/views/accepts/show.html.erb +2 -2
- data/app/views/baskets/edit.html.erb +2 -2
- data/app/views/baskets/index.html.erb +3 -2
- data/app/views/baskets/new.html.erb +6 -6
- data/app/views/baskets/show.html.erb +1 -1
- data/app/views/bookstores/_form.html.erb +3 -3
- data/app/views/bookstores/edit.html.erb +1 -1
- data/app/views/bookstores/index.html.erb +3 -3
- data/app/views/bookstores/new.html.erb +1 -1
- data/app/views/bookstores/show.html.erb +1 -1
- data/app/views/budget_types/_form.html.erb +2 -2
- data/app/views/budget_types/edit.html.erb +1 -1
- data/app/views/budget_types/index.html.erb +6 -6
- data/app/views/budget_types/new.html.erb +1 -1
- data/app/views/budget_types/show.html.erb +1 -1
- data/app/views/libraries/_calendar.html.erb +2 -2
- data/app/views/libraries/_form.html.erb +12 -12
- data/app/views/libraries/edit.html.erb +1 -1
- data/app/views/libraries/index.html.erb +18 -14
- data/app/views/libraries/new.html.erb +1 -1
- data/app/views/libraries/show.html.erb +7 -7
- data/app/views/library_groups/_form.html.erb +4 -4
- data/app/views/library_groups/edit.html.erb +1 -1
- data/app/views/library_groups/index.html.erb +2 -2
- data/app/views/library_groups/new.html.erb +1 -1
- data/app/views/library_groups/show.html.erb +2 -2
- data/app/views/request_status_types/edit.html.erb +1 -1
- data/app/views/request_status_types/index.html.erb +3 -3
- data/app/views/request_status_types/new.html.erb +1 -1
- data/app/views/request_status_types/show.html.erb +1 -1
- data/app/views/request_types/edit.html.erb +1 -1
- data/app/views/request_types/index.html.erb +3 -3
- data/app/views/request_types/new.html.erb +1 -1
- data/app/views/request_types/show.html.erb +1 -1
- data/app/views/search_engines/_form.html.erb +4 -4
- data/app/views/search_engines/edit.html.erb +1 -1
- data/app/views/search_engines/index.html.erb +3 -3
- data/app/views/search_engines/new.html.erb +1 -1
- data/app/views/search_engines/show.html.erb +1 -1
- data/app/views/shelves/_form.html.erb +4 -4
- data/app/views/shelves/_library_facet.html.erb +1 -1
- data/app/views/shelves/edit.html.erb +1 -1
- data/app/views/shelves/index.html.erb +5 -5
- data/app/views/shelves/new.html.erb +2 -2
- data/app/views/shelves/show.html.erb +5 -5
- data/app/views/shelves/show.mobile.erb +1 -1
- data/app/views/subscribes/edit.html.erb +3 -3
- data/app/views/subscribes/index.html.erb +3 -3
- data/app/views/subscribes/new.html.erb +8 -8
- data/app/views/subscribes/show.html.erb +1 -1
- data/app/views/subscriptions/edit.html.erb +3 -3
- data/app/views/subscriptions/index.html.erb +4 -4
- data/app/views/subscriptions/new.html.erb +3 -3
- data/app/views/subscriptions/show.html.erb +1 -1
- data/config/locales/translation_ja.yml +1 -1
- data/db/migrate/080_create_library_groups.rb +0 -1
- data/lib/enju_library/version.rb +1 -1
- data/lib/generators/enju_library/setup/templates/db/fixtures/request_status_types.yml +37 -0
- data/lib/generators/enju_library/setup/templates/db/fixtures/request_types.yml +29 -0
- data/spec/controllers/accepts_controller_spec.rb +1 -1
- data/spec/controllers/baskets_controller_spec.rb +30 -30
- data/spec/controllers/bookstores_controller_spec.rb +21 -21
- data/spec/controllers/budget_types_controller_spec.rb +1 -1
- data/spec/controllers/libraries_controller_spec.rb +24 -24
- data/spec/controllers/library_groups_controller_spec.rb +7 -7
- data/spec/controllers/request_status_types_controller_spec.rb +21 -21
- data/spec/controllers/request_types_controller_spec.rb +21 -21
- data/spec/controllers/search_engines_controller_spec.rb +21 -21
- data/spec/controllers/shelves_controller_spec.rb +20 -20
- data/spec/controllers/subscribes_controller_spec.rb +21 -21
- data/spec/controllers/subscriptions_controller_spec.rb +21 -21
- data/spec/dummy/app/helpers/application_helper.rb +1 -0
- data/spec/dummy/app/models/user.rb +6 -86
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/001_create_agents.rb +0 -8
- data/spec/dummy/db/migrate/{20111201155513_add_devise_to_users.rb → 002_devise_create_users.rb} +18 -16
- data/spec/dummy/db/migrate/005_create_manifestations.rb +7 -24
- data/spec/dummy/db/migrate/006_create_items.rb +0 -6
- data/spec/dummy/db/migrate/041_create_roles.rb +13 -0
- data/spec/dummy/db/migrate/077_create_user_groups.rb +3 -7
- data/spec/dummy/db/migrate/112_create_frequencies.rb +12 -0
- data/spec/dummy/db/migrate/117_create_form_of_works.rb +12 -0
- data/spec/dummy/db/migrate/154_create_messages.rb +0 -1
- data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +0 -2
- data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +0 -1
- data/spec/dummy/db/migrate/20081028083142_create_agent_import_files.rb +20 -0
- data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +20 -0
- data/spec/dummy/db/migrate/20081028093607_create_event_import_files.rb +0 -2
- data/spec/dummy/db/migrate/20081212080038_create_manifestation_checkout_stats.rb +0 -1
- data/spec/dummy/db/migrate/20081215094302_create_user_checkout_stats.rb +0 -1
- data/spec/dummy/db/migrate/20081216190724_create_manifestation_reserve_stats.rb +0 -1
- data/spec/dummy/db/migrate/20081220023628_create_user_reserve_stats.rb +0 -1
- data/spec/dummy/db/migrate/20090321130448_add_completed_at_to_user_checkout_stat.rb +0 -4
- data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +15 -0
- data/spec/dummy/db/migrate/20090719201843_create_extents.rb +12 -0
- data/spec/dummy/db/migrate/20090720091106_create_medium_of_performances.rb +12 -0
- data/spec/dummy/db/migrate/20090720091429_create_content_types.rb +12 -0
- data/spec/dummy/db/migrate/20091025080447_create_licenses.rb +12 -0
- data/spec/dummy/db/migrate/20100129142347_create_import_requests.rb +14 -0
- data/spec/dummy/db/migrate/{20111201163718_create_user_has_roles.rb → 20100606065209_create_user_has_roles.rb} +2 -0
- data/spec/dummy/db/migrate/20100925043847_create_resource_import_results.rb +15 -0
- data/spec/dummy/db/migrate/20100925074559_create_agent_import_results.rb +12 -0
- data/spec/dummy/db/migrate/20110318183304_add_valid_period_for_new_user_to_user_group.rb +0 -2
- data/spec/dummy/db/migrate/20110603184217_add_edit_mode_to_resource_import_file.rb +9 -0
- data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +6 -0
- data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +6 -0
- data/spec/dummy/db/migrate/20120410104851_add_year_of_publication_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20120413161340_add_fingerprint_to_resource_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120413161403_add_fingerprint_to_agent_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120413170705_add_error_message_to_resource_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120413170720_add_error_message_to_agent_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20120418081407_add_month_of_publication_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20120511072422_add_agent_identifier_to_agent.rb +6 -0
- data/spec/dummy/db/migrate/20120602141129_add_edit_mode_to_agent_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20121116031206_add_fulltext_content_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20121116033446_add_doi_to_manifestation.rb +6 -0
- data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +16 -0
- data/spec/dummy/db/migrate/{20111201121844_create_roles.rb → 20130506175303_create_identifier_types.rb} +2 -2
- data/spec/dummy/db/migrate/20130506175834_create_identifiers.rb +15 -0
- data/spec/dummy/db/migrate/20130509185724_add_statement_of_responsibility_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20140110122216_create_user_import_files.rb +18 -0
- data/spec/dummy/db/migrate/20140110131010_create_user_import_results.rb +11 -0
- data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +20 -0
- data/spec/dummy/db/migrate/20140518050147_create_reserve_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140523171309_create_event_import_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140528045518_create_user_checkout_stat_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140528045539_create_user_reserve_stat_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140528045600_create_manifestation_checkout_stat_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140528045617_create_manifestation_reserve_stat_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140610123439_drop_email_unique_constraint_enju_leaf_rc10.rb +11 -0
- data/spec/dummy/db/migrate/20140614065404_create_resource_export_files.rb +11 -0
- data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140628071719_add_user_encoding_to_event_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140628072217_add_user_encoding_to_user_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140628073524_add_user_encoding_to_agent_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140628073535_add_user_encoding_to_resource_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140709113413_create_user_export_files.rb +11 -0
- data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140720140916_add_binding_item_identifier_to_item.rb +8 -0
- data/spec/dummy/db/migrate/20140720170714_add_default_library_id_to_user_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140720170735_add_default_user_group_id_to_user_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140720192418_add_default_library_id_to_event_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140721151416_add_default_shelf_id_to_resource_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140802082007_add_manifestation_id_to_item.rb +6 -0
- data/spec/dummy/db/migrate/20140810061942_add_user_id_to_user_checkout_stat.rb +12 -0
- data/spec/dummy/db/migrate/20140810091231_add_checkout_icalendar_token_to_profile.rb +6 -0
- data/spec/dummy/db/migrate/20140810091417_add_save_checkout_history_to_profile.rb +5 -0
- data/spec/dummy/db/migrate/20140811031145_add_expired_at_to_profile.rb +5 -0
- data/spec/dummy/db/schema.rb +453 -74
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/solr/conf/admin-extra.html +31 -0
- data/spec/dummy/solr/conf/elevate.xml +36 -0
- data/spec/dummy/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
- data/spec/dummy/solr/conf/protwords.txt +21 -0
- data/spec/dummy/solr/conf/schema.xml +255 -0
- data/spec/dummy/solr/conf/scripts.conf +24 -0
- data/spec/dummy/solr/conf/solrconfig.xml +667 -0
- data/spec/dummy/solr/conf/spellings.txt +2 -0
- data/spec/dummy/solr/conf/stopwords.txt +58 -0
- data/spec/dummy/solr/conf/synonyms.txt +31 -0
- data/spec/dummy/solr/default/data/index/_1vz.fdt +0 -0
- data/spec/dummy/solr/default/data/index/_1vz.fdx +0 -0
- data/spec/dummy/solr/default/data/index/_1vz.fnm +0 -0
- data/spec/dummy/solr/default/data/index/_1vz.nvd +0 -0
- data/spec/dummy/solr/default/data/index/_1vz.nvm +0 -0
- data/spec/dummy/solr/default/data/index/_1vz.si +0 -0
- data/spec/dummy/solr/default/data/index/_1vz_Lucene41_0.doc +0 -0
- data/spec/dummy/solr/default/data/index/_1vz_Lucene41_0.pos +0 -0
- data/spec/dummy/solr/default/data/index/_1vz_Lucene41_0.tim +0 -0
- data/spec/dummy/solr/default/data/index/_1vz_Lucene41_0.tip +0 -0
- data/spec/dummy/solr/default/data/index/segments.gen +0 -0
- data/spec/dummy/solr/default/data/index/segments_36s +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004121 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004122 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004123 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004124 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004125 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004126 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004127 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004128 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004129 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004130 +0 -0
- data/spec/dummy/solr/development/data/index/segments.gen +0 -0
- data/spec/dummy/solr/development/data/index/segments_1 +0 -0
- data/spec/dummy/solr/solr.xml +8 -0
- data/spec/dummy/solr/test/data/index/segments.gen +0 -0
- data/spec/dummy/solr/test/data/index/segments_1 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0440b81b0aae840cf287a686585a8cec +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0483120d2ec851526d1beb322a87b34d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/096c3408c7592aaeb756778ce1775f16 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/09bc1fff0c1477a69e8cd36ed3fe771f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0c0062cfb97ef1437ab0020e724876c6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0c8f59d97121b79a2e2a0d009d6da9c3 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0e3e358e4fe4601ba5e435f6d0c86f12 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0e7592ffc95bd8b73854cc6453c64e33 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0e8e7445a50fad85ab545fa283abf5b7 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1260173072d9796c1ae7d7752b9916c3 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/129cec5384c0f26fcfb0ce65048298c5 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1572dfd6f1e555f4be1aa60ddc3cb0c0 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/17c9f5037fae5b6ee1fc7466948001b5 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1c1fbab93e4552626da626e0dbe70c74 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1d450e5266eb3d679107d9a36dc22559 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2258e83cd2e464c650334b6a72a87cb6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/241a5d6ad6008e25a64a5092e8361ae8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2bf9c36d2bc8f8ca084394d139ce8edf +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2f09f58943a88f21e3a0318621391785 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2ffe508d0533d0afd2a37bb574eda40d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/301d9ec69800d0dc163460a12304676a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3fbe8dcb9a5b2fbc7a22cc4b1ca4aa11 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/45f3c74e1e31b58d9bda6908d5623290 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/49d32c13d390c1b80d8b2705aac86579 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/4aa18096a209e515f5f1df487622cdf4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/4c4d6b8fc44a49272793290caed29e24 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/4f877aaa67a006f34ad9643d7f82b6dc +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/50e64f45f0cb4cee52fd3f3908f89a82 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5762cca052dd5d3eb8bb35e2ed9a59b8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5ab3fcfe4078a2bb14bd91e9ce73ef29 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5afd4f8068bdfb3d99f5ec4034d2410c +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5db165a5b217a384aaa8885d6bcaf193 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5dd0b61707256a0514d7f5e224188a1d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/65a8d4d288e5f082f0166aa7be7a2464 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/66e8ff0ee49363fdd0e1866807515228 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6738d1a07584e4b732d197e10afd6a19 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6a83d3fd052b7923111a0ed838ff53e0 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6a958d3fc0999c71aa19bae06bacdeb6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6df57ded762c97e6755758008bb3a660 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6fdb4513af157010ef79b56df44d665e +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7289cf11ae787f5e0639528dc155bffb +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7c4b2e5317023fb751fa54ad41f95101 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7eea3b9e54d8a23d8a05d354f1a93f51 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/811e5198d0dc4efe02d28c0c2215e207 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/84c8a64682205dba3f8edd60fc1ec8e5 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/8a73d1e841a4716b4f18ed4a23622092 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/8be2a49de16592553e0d0a09d92bf6ef +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/8f72bcc7284bf844ac8bec5dc4b71482 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/9604073a83f822f13caaabd7e157bbbb +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/979eaef456657e4fc79b9b967aef0587 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/9ad166e60e3d477c78328181979a7b77 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/9b78afe804f3870fbafb97d2d62e5f6b +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a296264dcc89e1f8ab6382e678ffbe38 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a3cea75f1356ef55329e78f86b4c72b1 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a5bf9fc3822019953dee89c6ae2b32ea +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a7387ef33f472faf58df3dd72623fbc6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/aa2e1ada35daa496bb08e85fcb817536 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/abee2d4cb18d15789dcdc9c680f3e6de +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/ae706bde720905edffe622ae48f15740 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b53fd979e77975479427d0b481b004d4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b57a0579a21bd3280d1db6f42550e5c7 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b80bed2ef62ec65384f12272c185a9a8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/bf33fb298844af06e55096420b989e3b +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c3e97042b232e677d67679e11ebdb8ec +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c4700cd893db92917b893a0e48f57a24 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c488c91e58a235d36a0ff8058e5a1004 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c4a984c6feb506f3e1f9120a8d029bda +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c5ef868ba5f891f326945efdd43e3170 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c6283ae59dff510d5a2bb2bb9194d045 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c6bbf5ca5c9b58807ba226fde0ccc60f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/ca5b985126fb033dec26015bd08d56ee +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d26b3581068a8ec8af52f3b2cce8c32a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d34b5413caa9407126db68d5d590804a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d4ac74c17332ad931b72f42d7997fcc0 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d648a0b0abb7fd7ff579d72ffe033d50 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/db6425848529903bdee75792cb2ed79a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/dd672deb061233e0db1d2f413d27213f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e1fcfb0faa3c12467a1c35251e04c8b1 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e22f9546f5d75bd3549886e979dcb96e +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e44b4816bd1b2a7ba674c978dad35f3a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e513ee1af8fa24dcb4f473c18c09bf87 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e8142c2b10712e79b6d2c2cba0894b4c +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f964bf5dc3949774db54d7cda5761d43 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/fa8059ddbbe226114ba0c178de3fc31b +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/fa8e81ce1d45228121b9df5618542190 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/fbc69737b9b0dc77871fa2bb8647a38a +0 -0
- data/spec/factories/accepts.rb +12 -0
- data/spec/factories/budget_types.rb +13 -0
- data/spec/factories/profile.rb +10 -0
- data/spec/factories/user.rb +21 -12
- data/spec/fixtures/agents.yml +0 -12
- data/spec/fixtures/items.yml +49 -37
- data/spec/fixtures/libraries.yml +25 -28
- data/spec/fixtures/library_groups.yml +13 -18
- data/spec/fixtures/manifestation_checkout_stats.yml +0 -3
- data/spec/fixtures/manifestation_reserve_stats.yml +0 -3
- data/spec/fixtures/message_requests.yml +0 -3
- data/spec/fixtures/profiles.yml +98 -0
- data/spec/fixtures/request_status_types.yml +4 -5
- data/spec/fixtures/request_types.yml +4 -5
- data/spec/fixtures/reserve_transitions.yml +88 -0
- data/spec/fixtures/shelves.yml +7 -7
- data/spec/fixtures/user_checkout_stats.yml +0 -3
- data/spec/fixtures/user_groups.yml +3 -3
- data/spec/fixtures/user_reserve_stats.yml +0 -3
- data/spec/fixtures/users.yml +0 -55
- data/spec/models/library_group_spec.rb +0 -2
- data/spec/views/budget_types/index.html.erb_spec.rb +2 -2
- metadata +417 -28
- data/app/models/library_group_sweeper.rb +0 -12
- data/spec/dummy/db/migrate/20110425133109_add_issn_to_series_statement.rb +0 -9
- data/spec/dummy/db/migrate/20110618091240_add_periodical_to_series_statement.rb +0 -9
- data/spec/dummy/db/migrate/20110916053430_rename_manifestation_number_list_to_number_string.rb +0 -13
- data/spec/dummy/db/migrate/20111201155456_create_users.rb +0 -16
@@ -20,7 +20,7 @@ require 'spec_helper'
|
|
20
20
|
|
21
21
|
describe BudgetTypesController do
|
22
22
|
fixtures :all
|
23
|
-
|
23
|
+
login_fixture_admin
|
24
24
|
|
25
25
|
# This should return the minimal set of attributes required to create a valid
|
26
26
|
# BudgetType. As you add validations to BudgetType, be sure to
|
@@ -9,7 +9,7 @@ describe LibrariesController do
|
|
9
9
|
end
|
10
10
|
|
11
11
|
describe "When logged in as Administrator" do
|
12
|
-
|
12
|
+
login_fixture_admin
|
13
13
|
|
14
14
|
it "assigns all libraries as @libraries" do
|
15
15
|
get :index
|
@@ -18,7 +18,7 @@ describe LibrariesController do
|
|
18
18
|
end
|
19
19
|
|
20
20
|
describe "When logged in as Librarian" do
|
21
|
-
|
21
|
+
login_fixture_librarian
|
22
22
|
|
23
23
|
it "assigns all libraries as @libraries" do
|
24
24
|
get :index
|
@@ -27,7 +27,7 @@ describe LibrariesController do
|
|
27
27
|
end
|
28
28
|
|
29
29
|
describe "When logged in as User" do
|
30
|
-
|
30
|
+
login_fixture_user
|
31
31
|
|
32
32
|
it "assigns all libraries as @libraries" do
|
33
33
|
get :index
|
@@ -51,7 +51,7 @@ describe LibrariesController do
|
|
51
51
|
|
52
52
|
describe "GET show", :solr => true do
|
53
53
|
describe "When logged in as Administrator" do
|
54
|
-
|
54
|
+
login_fixture_admin
|
55
55
|
|
56
56
|
it "assigns the requested library as @library" do
|
57
57
|
get :show, :id => 1
|
@@ -60,7 +60,7 @@ describe LibrariesController do
|
|
60
60
|
end
|
61
61
|
|
62
62
|
describe "When logged in as Librarian" do
|
63
|
-
|
63
|
+
login_fixture_librarian
|
64
64
|
|
65
65
|
it "assigns the requested library as @library" do
|
66
66
|
get :show, :id => 1
|
@@ -69,7 +69,7 @@ describe LibrariesController do
|
|
69
69
|
end
|
70
70
|
|
71
71
|
describe "When logged in as User" do
|
72
|
-
|
72
|
+
login_fixture_user
|
73
73
|
|
74
74
|
it "assigns the requested library as @library" do
|
75
75
|
get :show, :id => 1
|
@@ -87,7 +87,7 @@ describe LibrariesController do
|
|
87
87
|
|
88
88
|
describe "GET new" do
|
89
89
|
describe "When logged in as Administrator" do
|
90
|
-
|
90
|
+
login_fixture_admin
|
91
91
|
|
92
92
|
it "assigns the requested library as @library" do
|
93
93
|
get :new
|
@@ -96,7 +96,7 @@ describe LibrariesController do
|
|
96
96
|
end
|
97
97
|
|
98
98
|
describe "When logged in as Librarian" do
|
99
|
-
|
99
|
+
login_fixture_librarian
|
100
100
|
|
101
101
|
it "assigns the requested library as @library" do
|
102
102
|
get :new
|
@@ -105,7 +105,7 @@ describe LibrariesController do
|
|
105
105
|
end
|
106
106
|
|
107
107
|
describe "When logged in as User" do
|
108
|
-
|
108
|
+
login_fixture_user
|
109
109
|
|
110
110
|
it "should not assign the requested library as @library" do
|
111
111
|
get :new
|
@@ -125,7 +125,7 @@ describe LibrariesController do
|
|
125
125
|
|
126
126
|
describe "GET edit" do
|
127
127
|
describe "When logged in as Administrator" do
|
128
|
-
|
128
|
+
login_fixture_admin
|
129
129
|
|
130
130
|
it "assigns the requested library as @library" do
|
131
131
|
library = FactoryGirl.create(:library)
|
@@ -135,7 +135,7 @@ describe LibrariesController do
|
|
135
135
|
end
|
136
136
|
|
137
137
|
describe "When logged in as Librarian" do
|
138
|
-
|
138
|
+
login_fixture_librarian
|
139
139
|
|
140
140
|
it "assigns the requested library as @library" do
|
141
141
|
library = FactoryGirl.create(:library)
|
@@ -145,7 +145,7 @@ describe LibrariesController do
|
|
145
145
|
end
|
146
146
|
|
147
147
|
describe "When logged in as User" do
|
148
|
-
|
148
|
+
login_fixture_user
|
149
149
|
|
150
150
|
it "assigns the requested library as @library" do
|
151
151
|
library = FactoryGirl.create(:library)
|
@@ -170,7 +170,7 @@ describe LibrariesController do
|
|
170
170
|
end
|
171
171
|
|
172
172
|
describe "When logged in as Administrator" do
|
173
|
-
|
173
|
+
login_fixture_admin
|
174
174
|
|
175
175
|
describe "with valid params" do
|
176
176
|
it "assigns a newly created library as @library" do
|
@@ -203,7 +203,7 @@ describe LibrariesController do
|
|
203
203
|
end
|
204
204
|
|
205
205
|
describe "When logged in as Librarian" do
|
206
|
-
|
206
|
+
login_fixture_librarian
|
207
207
|
|
208
208
|
describe "with valid params" do
|
209
209
|
it "assigns a newly created library as @library" do
|
@@ -231,7 +231,7 @@ describe LibrariesController do
|
|
231
231
|
end
|
232
232
|
|
233
233
|
describe "When logged in as User" do
|
234
|
-
|
234
|
+
login_fixture_user
|
235
235
|
|
236
236
|
describe "with valid params" do
|
237
237
|
it "assigns a newly created library as @library" do
|
@@ -293,7 +293,7 @@ describe LibrariesController do
|
|
293
293
|
end
|
294
294
|
|
295
295
|
describe "When logged in as Administrator" do
|
296
|
-
|
296
|
+
login_fixture_admin
|
297
297
|
|
298
298
|
describe "with valid params" do
|
299
299
|
it "updates the requested library" do
|
@@ -320,7 +320,7 @@ describe LibrariesController do
|
|
320
320
|
end
|
321
321
|
|
322
322
|
describe "When logged in as Librarian" do
|
323
|
-
|
323
|
+
login_fixture_librarian
|
324
324
|
|
325
325
|
describe "with valid params" do
|
326
326
|
it "updates the requested library" do
|
@@ -342,7 +342,7 @@ describe LibrariesController do
|
|
342
342
|
end
|
343
343
|
|
344
344
|
describe "When logged in as User" do
|
345
|
-
|
345
|
+
login_fixture_user
|
346
346
|
|
347
347
|
describe "with valid params" do
|
348
348
|
it "updates the requested library" do
|
@@ -391,7 +391,7 @@ describe LibrariesController do
|
|
391
391
|
end
|
392
392
|
|
393
393
|
describe "When logged in as Administrator" do
|
394
|
-
|
394
|
+
login_fixture_admin
|
395
395
|
|
396
396
|
it "destroys the requested library" do
|
397
397
|
delete :destroy, :id => @library.id
|
@@ -414,7 +414,7 @@ describe LibrariesController do
|
|
414
414
|
end
|
415
415
|
|
416
416
|
describe "When logged in as Librarian" do
|
417
|
-
|
417
|
+
login_fixture_librarian
|
418
418
|
|
419
419
|
it "destroys the requested library" do
|
420
420
|
delete :destroy, :id => @library.id
|
@@ -427,7 +427,7 @@ describe LibrariesController do
|
|
427
427
|
end
|
428
428
|
|
429
429
|
describe "When logged in as User" do
|
430
|
-
|
430
|
+
login_fixture_user
|
431
431
|
|
432
432
|
it "destroys the requested library" do
|
433
433
|
delete :destroy, :id => @library.id
|
@@ -458,7 +458,7 @@ describe LibrariesController do
|
|
458
458
|
end
|
459
459
|
|
460
460
|
describe "When logged in as Administrator" do
|
461
|
-
|
461
|
+
login_fixture_admin
|
462
462
|
|
463
463
|
it "destroys the requested library" do
|
464
464
|
delete :destroy, :id => @library.id
|
@@ -471,7 +471,7 @@ describe LibrariesController do
|
|
471
471
|
end
|
472
472
|
|
473
473
|
describe "When logged in as Librarian" do
|
474
|
-
|
474
|
+
login_fixture_librarian
|
475
475
|
|
476
476
|
it "destroys the requested library" do
|
477
477
|
delete :destroy, :id => @library.id
|
@@ -484,7 +484,7 @@ describe LibrariesController do
|
|
484
484
|
end
|
485
485
|
|
486
486
|
describe "When logged in as User" do
|
487
|
-
|
487
|
+
login_fixture_user
|
488
488
|
|
489
489
|
it "destroys the requested library" do
|
490
490
|
delete :destroy, :id => @library.id
|
@@ -5,7 +5,7 @@ describe LibraryGroupsController do
|
|
5
5
|
|
6
6
|
describe "GET index" do
|
7
7
|
describe "When logged in as Administrator" do
|
8
|
-
|
8
|
+
login_fixture_admin
|
9
9
|
|
10
10
|
it "assigns all library_groups as @library_groups" do
|
11
11
|
get :index
|
@@ -24,7 +24,7 @@ describe LibraryGroupsController do
|
|
24
24
|
|
25
25
|
describe "GET show" do
|
26
26
|
describe "When logged in as Administrator" do
|
27
|
-
|
27
|
+
login_fixture_admin
|
28
28
|
|
29
29
|
it "assigns the requested library_group as @library_group" do
|
30
30
|
get :show, :id => 1
|
@@ -43,7 +43,7 @@ describe LibraryGroupsController do
|
|
43
43
|
|
44
44
|
describe "GET edit" do
|
45
45
|
describe "When logged in as Administrator" do
|
46
|
-
|
46
|
+
login_fixture_admin
|
47
47
|
|
48
48
|
it "assigns the requested library_group as @library_group" do
|
49
49
|
library_group = LibraryGroup.find(1)
|
@@ -53,7 +53,7 @@ describe LibraryGroupsController do
|
|
53
53
|
end
|
54
54
|
|
55
55
|
describe "When logged in as Librarian" do
|
56
|
-
|
56
|
+
login_fixture_librarian
|
57
57
|
|
58
58
|
it "should not assign the requested library_group as @library_group" do
|
59
59
|
library_group = LibraryGroup.find(1)
|
@@ -63,7 +63,7 @@ describe LibraryGroupsController do
|
|
63
63
|
end
|
64
64
|
|
65
65
|
describe "When logged in as User" do
|
66
|
-
|
66
|
+
login_fixture_user
|
67
67
|
|
68
68
|
it "should not assign the requested library_group as @library_group" do
|
69
69
|
library_group = LibraryGroup.find(1)
|
@@ -84,12 +84,12 @@ describe LibraryGroupsController do
|
|
84
84
|
describe "PUT update" do
|
85
85
|
before(:each) do
|
86
86
|
@library_group = LibraryGroup.find(1)
|
87
|
-
@attrs = {:name => 'example'
|
87
|
+
@attrs = {:name => 'example'}
|
88
88
|
@invalid_attrs = {:name => ''}
|
89
89
|
end
|
90
90
|
|
91
91
|
describe "When logged in as Administrator" do
|
92
|
-
|
92
|
+
login_fixture_admin
|
93
93
|
|
94
94
|
describe "with valid params" do
|
95
95
|
it "updates the requested library_group" do
|
@@ -15,7 +15,7 @@ describe RequestStatusTypesController do
|
|
15
15
|
end
|
16
16
|
|
17
17
|
describe "When logged in as Administrator" do
|
18
|
-
|
18
|
+
login_fixture_admin
|
19
19
|
|
20
20
|
it "assigns all request_status_types as @request_status_types" do
|
21
21
|
get :index
|
@@ -24,7 +24,7 @@ describe RequestStatusTypesController do
|
|
24
24
|
end
|
25
25
|
|
26
26
|
describe "When logged in as Librarian" do
|
27
|
-
|
27
|
+
login_fixture_librarian
|
28
28
|
|
29
29
|
it "assigns all request_status_types as @request_status_types" do
|
30
30
|
get :index
|
@@ -33,7 +33,7 @@ describe RequestStatusTypesController do
|
|
33
33
|
end
|
34
34
|
|
35
35
|
describe "When logged in as User" do
|
36
|
-
|
36
|
+
login_fixture_user
|
37
37
|
|
38
38
|
it "should not assign request_status_types as @request_status_types" do
|
39
39
|
get :index
|
@@ -57,7 +57,7 @@ describe RequestStatusTypesController do
|
|
57
57
|
end
|
58
58
|
|
59
59
|
describe "When logged in as Administrator" do
|
60
|
-
|
60
|
+
login_fixture_admin
|
61
61
|
|
62
62
|
it "assigns the requested request_status_type as @request_status_type" do
|
63
63
|
get :show, :id => @request_status_type.id
|
@@ -66,7 +66,7 @@ describe RequestStatusTypesController do
|
|
66
66
|
end
|
67
67
|
|
68
68
|
describe "When logged in as Librarian" do
|
69
|
-
|
69
|
+
login_fixture_librarian
|
70
70
|
|
71
71
|
it "assigns the requested request_status_type as @request_status_type" do
|
72
72
|
get :show, :id => @request_status_type.id
|
@@ -75,7 +75,7 @@ describe RequestStatusTypesController do
|
|
75
75
|
end
|
76
76
|
|
77
77
|
describe "When logged in as User" do
|
78
|
-
|
78
|
+
login_fixture_user
|
79
79
|
|
80
80
|
it "assigns the requested request_status_type as @request_status_type" do
|
81
81
|
get :show, :id => @request_status_type.id
|
@@ -93,7 +93,7 @@ describe RequestStatusTypesController do
|
|
93
93
|
|
94
94
|
describe "GET new" do
|
95
95
|
describe "When logged in as Administrator" do
|
96
|
-
|
96
|
+
login_fixture_admin
|
97
97
|
|
98
98
|
it "assigns the requested request_status_type as @request_status_type" do
|
99
99
|
get :new
|
@@ -103,7 +103,7 @@ describe RequestStatusTypesController do
|
|
103
103
|
end
|
104
104
|
|
105
105
|
describe "When logged in as Librarian" do
|
106
|
-
|
106
|
+
login_fixture_librarian
|
107
107
|
|
108
108
|
it "should not assign the requested request_status_type as @request_status_type" do
|
109
109
|
get :new
|
@@ -113,7 +113,7 @@ describe RequestStatusTypesController do
|
|
113
113
|
end
|
114
114
|
|
115
115
|
describe "When logged in as User" do
|
116
|
-
|
116
|
+
login_fixture_user
|
117
117
|
|
118
118
|
it "should not assign the requested request_status_type as @request_status_type" do
|
119
119
|
get :new
|
@@ -137,7 +137,7 @@ describe RequestStatusTypesController do
|
|
137
137
|
end
|
138
138
|
|
139
139
|
describe "When logged in as Administrator" do
|
140
|
-
|
140
|
+
login_fixture_admin
|
141
141
|
|
142
142
|
it "assigns the requested request_status_type as @request_status_type" do
|
143
143
|
get :edit, :id => @request_status_type.id
|
@@ -146,7 +146,7 @@ describe RequestStatusTypesController do
|
|
146
146
|
end
|
147
147
|
|
148
148
|
describe "When logged in as Librarian" do
|
149
|
-
|
149
|
+
login_fixture_librarian
|
150
150
|
|
151
151
|
it "assigns the requested request_status_type as @request_status_type" do
|
152
152
|
get :edit, :id => @request_status_type.id
|
@@ -155,7 +155,7 @@ describe RequestStatusTypesController do
|
|
155
155
|
end
|
156
156
|
|
157
157
|
describe "When logged in as User" do
|
158
|
-
|
158
|
+
login_fixture_user
|
159
159
|
|
160
160
|
it "assigns the requested request_status_type as @request_status_type" do
|
161
161
|
get :edit, :id => @request_status_type.id
|
@@ -178,7 +178,7 @@ describe RequestStatusTypesController do
|
|
178
178
|
end
|
179
179
|
|
180
180
|
describe "When logged in as Administrator" do
|
181
|
-
|
181
|
+
login_fixture_admin
|
182
182
|
|
183
183
|
describe "with valid params" do
|
184
184
|
it "assigns a newly created request_status_type as @request_status_type" do
|
@@ -206,7 +206,7 @@ describe RequestStatusTypesController do
|
|
206
206
|
end
|
207
207
|
|
208
208
|
describe "When logged in as Librarian" do
|
209
|
-
|
209
|
+
login_fixture_librarian
|
210
210
|
|
211
211
|
describe "with valid params" do
|
212
212
|
it "assigns a newly created request_status_type as @request_status_type" do
|
@@ -234,7 +234,7 @@ describe RequestStatusTypesController do
|
|
234
234
|
end
|
235
235
|
|
236
236
|
describe "When logged in as User" do
|
237
|
-
|
237
|
+
login_fixture_user
|
238
238
|
|
239
239
|
describe "with valid params" do
|
240
240
|
it "assigns a newly created request_status_type as @request_status_type" do
|
@@ -296,7 +296,7 @@ describe RequestStatusTypesController do
|
|
296
296
|
end
|
297
297
|
|
298
298
|
describe "When logged in as Administrator" do
|
299
|
-
|
299
|
+
login_fixture_admin
|
300
300
|
|
301
301
|
describe "with valid params" do
|
302
302
|
it "updates the requested request_status_type" do
|
@@ -323,7 +323,7 @@ describe RequestStatusTypesController do
|
|
323
323
|
end
|
324
324
|
|
325
325
|
describe "When logged in as Librarian" do
|
326
|
-
|
326
|
+
login_fixture_librarian
|
327
327
|
|
328
328
|
describe "with valid params" do
|
329
329
|
it "updates the requested request_status_type" do
|
@@ -346,7 +346,7 @@ describe RequestStatusTypesController do
|
|
346
346
|
end
|
347
347
|
|
348
348
|
describe "When logged in as User" do
|
349
|
-
|
349
|
+
login_fixture_user
|
350
350
|
|
351
351
|
describe "with valid params" do
|
352
352
|
it "updates the requested request_status_type" do
|
@@ -395,7 +395,7 @@ describe RequestStatusTypesController do
|
|
395
395
|
end
|
396
396
|
|
397
397
|
describe "When logged in as Administrator" do
|
398
|
-
|
398
|
+
login_fixture_admin
|
399
399
|
|
400
400
|
it "destroys the requested request_status_type" do
|
401
401
|
delete :destroy, :id => @request_status_type.id
|
@@ -408,7 +408,7 @@ describe RequestStatusTypesController do
|
|
408
408
|
end
|
409
409
|
|
410
410
|
describe "When logged in as Librarian" do
|
411
|
-
|
411
|
+
login_fixture_librarian
|
412
412
|
|
413
413
|
it "destroys the requested request_status_type" do
|
414
414
|
delete :destroy, :id => @request_status_type.id
|
@@ -421,7 +421,7 @@ describe RequestStatusTypesController do
|
|
421
421
|
end
|
422
422
|
|
423
423
|
describe "When logged in as User" do
|
424
|
-
|
424
|
+
login_fixture_user
|
425
425
|
|
426
426
|
it "destroys the requested request_status_type" do
|
427
427
|
delete :destroy, :id => @request_status_type.id
|