enju_biblio 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/images/icons/book.png +0 -0
  3. data/app/assets/images/icons/cd.png +0 -0
  4. data/app/assets/images/icons/dvd.png +0 -0
  5. data/app/assets/images/icons/monitor.png +0 -0
  6. data/app/controllers/carrier_types_controller.rb +8 -3
  7. data/app/controllers/manifestations_controller.rb +17 -4
  8. data/app/controllers/picture_files_controller.rb +1 -1
  9. data/app/controllers/series_statements_controller.rb +6 -0
  10. data/app/helpers/manifestations_helper.rb +1 -1
  11. data/app/models/agent_import_file_transition.rb +1 -0
  12. data/app/models/carrier_type.rb +11 -7
  13. data/app/models/import_request_transition.rb +1 -0
  14. data/app/models/manifestation.rb +5 -0
  15. data/app/models/resource_export_file_transition.rb +1 -0
  16. data/app/models/resource_import_file_transition.rb +1 -0
  17. data/app/views/carrier_types/index.html.erb +4 -1
  18. data/app/views/manifestations/_show_detail_librarian.html.erb +4 -0
  19. data/app/views/manifestations/index.html.erb +3 -0
  20. data/config/locales/translation_en.yml +2 -0
  21. data/config/locales/translation_ja.yml +2 -0
  22. data/lib/enju_biblio/biblio_helper.rb +1 -12
  23. data/lib/enju_biblio/version.rb +1 -1
  24. data/lib/generators/enju_biblio/setup/templates/config/schedule.rb +3 -3
  25. data/lib/tasks/carrier_type.rb +30 -18
  26. data/lib/tasks/enju_biblio_tasks.rake +2 -0
  27. data/spec/controllers/agent_import_files_controller_spec.rb +87 -87
  28. data/spec/controllers/agent_import_results_controller_spec.rb +22 -22
  29. data/spec/controllers/agent_merge_lists_controller_spec.rb +157 -157
  30. data/spec/controllers/agent_merges_controller_spec.rb +151 -151
  31. data/spec/controllers/agent_relationship_types_controller_spec.rb +152 -152
  32. data/spec/controllers/agent_relationships_controller_spec.rb +153 -153
  33. data/spec/controllers/agent_types_controller_spec.rb +49 -50
  34. data/spec/controllers/agents_controller_spec.rb +234 -234
  35. data/spec/controllers/carrier_types_controller_spec.rb +123 -103
  36. data/spec/controllers/content_types_controller_spec.rb +51 -52
  37. data/spec/controllers/countries_controller_spec.rb +156 -156
  38. data/spec/controllers/create_types_controller_spec.rb +48 -49
  39. data/spec/controllers/creates_controller_spec.rb +154 -154
  40. data/spec/controllers/donates_controller_spec.rb +153 -153
  41. data/spec/controllers/form_of_works_controller_spec.rb +48 -49
  42. data/spec/controllers/frequencies_controller_spec.rb +51 -52
  43. data/spec/controllers/identifier_types_controller_spec.rb +48 -49
  44. data/spec/controllers/import_requests_controller_spec.rb +165 -164
  45. data/spec/controllers/items_controller_spec.rb +214 -216
  46. data/spec/controllers/languages_controller_spec.rb +109 -109
  47. data/spec/controllers/licenses_controller_spec.rb +48 -49
  48. data/spec/controllers/manifestation_relationship_types_controller_spec.rb +152 -152
  49. data/spec/controllers/manifestation_relationships_controller_spec.rb +153 -153
  50. data/spec/controllers/manifestations_controller_spec.rb +319 -289
  51. data/spec/controllers/medium_of_performances_controller_spec.rb +48 -49
  52. data/spec/controllers/owns_controller_spec.rb +153 -153
  53. data/spec/controllers/picture_files_controller_spec.rb +156 -156
  54. data/spec/controllers/produce_types_controller_spec.rb +48 -49
  55. data/spec/controllers/produces_controller_spec.rb +154 -154
  56. data/spec/controllers/realize_types_controller_spec.rb +48 -49
  57. data/spec/controllers/realizes_controller_spec.rb +155 -155
  58. data/spec/controllers/resource_export_files_controller_spec.rb +72 -72
  59. data/spec/controllers/resource_import_files_controller_spec.rb +90 -90
  60. data/spec/controllers/resource_import_results_controller_spec.rb +43 -43
  61. data/spec/controllers/series_statement_merge_lists_controller_spec.rb +153 -153
  62. data/spec/controllers/series_statement_merges_controller_spec.rb +151 -151
  63. data/spec/controllers/series_statements_controller_spec.rb +154 -154
  64. data/spec/factories/checkout.rb +9 -0
  65. data/spec/factories/library.rb +13 -0
  66. data/spec/factories/shelf.rb +6 -0
  67. data/spec/fixtures/carrier_types.yml +11 -7
  68. data/spec/models/carrier_type_spec.rb +11 -7
  69. data/spec/models/resource_export_file_spec.rb +58 -16
  70. data/spec/support/resque.rb +0 -1
  71. data/spec/views/manifestations/show.html.erb_spec.rb +5 -0
  72. data/spec/views/resource_import_files/index.html.erb_spec.rb +1 -1
  73. data/spec/views/resource_import_files/show.html.erb_spec.rb +1 -1
  74. data/spec/views/resource_import_results/index.html.erb_spec.rb +1 -1
  75. data/spec/views/resource_import_results/show.html.erb_spec.rb +1 -1
  76. metadata +49 -39
@@ -29,113 +29,113 @@ describe MediumOfPerformancesController do
29
29
  FactoryGirl.attributes_for(:medium_of_performance)
30
30
  end
31
31
 
32
- describe "GET index" do
33
- it "assigns all medium_of_performances as @medium_of_performances" do
32
+ describe 'GET index' do
33
+ it 'assigns all medium_of_performances as @medium_of_performances' do
34
34
  medium_of_performance = MediumOfPerformance.create! valid_attributes
35
35
  get :index
36
36
  expect(assigns(:medium_of_performances)).to eq(MediumOfPerformance.order(:position))
37
37
  end
38
38
  end
39
39
 
40
- describe "GET show" do
41
- it "assigns the requested medium_of_performance as @medium_of_performance" do
40
+ describe 'GET show' do
41
+ it 'assigns the requested medium_of_performance as @medium_of_performance' do
42
42
  medium_of_performance = MediumOfPerformance.create! valid_attributes
43
- get :show, :id => medium_of_performance.id
43
+ get :show, id: medium_of_performance.id
44
44
  expect(assigns(:medium_of_performance)).to eq(medium_of_performance)
45
45
  end
46
46
  end
47
47
 
48
- describe "GET new" do
49
- it "assigns a new medium_of_performance as @medium_of_performance" do
48
+ describe 'GET new' do
49
+ it 'assigns a new medium_of_performance as @medium_of_performance' do
50
50
  get :new
51
51
  expect(assigns(:medium_of_performance)).to be_a_new(MediumOfPerformance)
52
52
  end
53
53
  end
54
54
 
55
- describe "GET edit" do
56
- it "assigns the requested medium_of_performance as @medium_of_performance" do
55
+ describe 'GET edit' do
56
+ it 'assigns the requested medium_of_performance as @medium_of_performance' do
57
57
  medium_of_performance = MediumOfPerformance.create! valid_attributes
58
- get :edit, :id => medium_of_performance.id
58
+ get :edit, id: medium_of_performance.id
59
59
  expect(assigns(:medium_of_performance)).to eq(medium_of_performance)
60
60
  end
61
61
  end
62
62
 
63
- describe "POST create" do
64
- describe "with valid params" do
65
- it "creates a new MediumOfPerformance" do
66
- expect {
67
- post :create, :medium_of_performance => valid_attributes
68
- }.to change(MediumOfPerformance, :count).by(1)
63
+ describe 'POST create' do
64
+ describe 'with valid params' do
65
+ it 'creates a new MediumOfPerformance' do
66
+ expect do
67
+ post :create, medium_of_performance: valid_attributes
68
+ end.to change(MediumOfPerformance, :count).by(1)
69
69
  end
70
70
 
71
- it "assigns a newly created medium_of_performance as @medium_of_performance" do
72
- post :create, :medium_of_performance => valid_attributes
71
+ it 'assigns a newly created medium_of_performance as @medium_of_performance' do
72
+ post :create, medium_of_performance: valid_attributes
73
73
  expect(assigns(:medium_of_performance)).to be_a(MediumOfPerformance)
74
74
  expect(assigns(:medium_of_performance)).to be_persisted
75
75
  end
76
76
 
77
- it "redirects to the created medium_of_performance" do
78
- post :create, :medium_of_performance => valid_attributes
77
+ it 'redirects to the created medium_of_performance' do
78
+ post :create, medium_of_performance: valid_attributes
79
79
  expect(response).to redirect_to(MediumOfPerformance.last)
80
80
  end
81
81
  end
82
82
 
83
- describe "with invalid params" do
84
- it "assigns a newly created but unsaved medium_of_performance as @medium_of_performance" do
83
+ describe 'with invalid params' do
84
+ it 'assigns a newly created but unsaved medium_of_performance as @medium_of_performance' do
85
85
  # Trigger the behavior that occurs when invalid params are submitted
86
86
  MediumOfPerformance.any_instance.stub(:save).and_return(false)
87
- post :create, :medium_of_performance => {name: "test"}
87
+ post :create, medium_of_performance: { name: 'test' }
88
88
  expect(assigns(:medium_of_performance)).to be_a_new(MediumOfPerformance)
89
89
  end
90
90
 
91
91
  it "re-renders the 'new' template" do
92
92
  # Trigger the behavior that occurs when invalid params are submitted
93
93
  MediumOfPerformance.any_instance.stub(:save).and_return(false)
94
- post :create, :medium_of_performance => {name: "test"}
95
- #expect(response).to render_template("new")
94
+ post :create, medium_of_performance: { name: 'test' }
95
+ # expect(response).to render_template("new")
96
96
  end
97
97
  end
98
98
  end
99
99
 
100
- describe "PUT update" do
101
- describe "with valid params" do
102
- it "updates the requested medium_of_performance" do
100
+ describe 'PUT update' do
101
+ describe 'with valid params' do
102
+ it 'updates the requested medium_of_performance' do
103
103
  medium_of_performance = MediumOfPerformance.create! valid_attributes
104
104
  # Assuming there are no other medium_of_performances in the database, this
105
105
  # specifies that the MediumOfPerformance created on the previous line
106
106
  # receives the :update_attributes message with whatever params are
107
107
  # submitted in the request.
108
- MediumOfPerformance.any_instance.should_receive(:update_attributes).with({'name' => 'test'})
109
- put :update, :id => medium_of_performance.id, :medium_of_performance => {'name' => 'test'}
108
+ MediumOfPerformance.any_instance.should_receive(:update_attributes).with('name' => 'test')
109
+ put :update, id: medium_of_performance.id, medium_of_performance: { 'name' => 'test' }
110
110
  end
111
111
 
112
- it "assigns the requested medium_of_performance as @medium_of_performance" do
112
+ it 'assigns the requested medium_of_performance as @medium_of_performance' do
113
113
  medium_of_performance = MediumOfPerformance.create! valid_attributes
114
- put :update, :id => medium_of_performance.id, :medium_of_performance => valid_attributes
114
+ put :update, id: medium_of_performance.id, medium_of_performance: valid_attributes
115
115
  expect(assigns(:medium_of_performance)).to eq(medium_of_performance)
116
116
  end
117
117
 
118
- it "redirects to the medium_of_performance" do
118
+ it 'redirects to the medium_of_performance' do
119
119
  medium_of_performance = MediumOfPerformance.create! valid_attributes
120
- put :update, :id => medium_of_performance.id, :medium_of_performance => valid_attributes
120
+ put :update, id: medium_of_performance.id, medium_of_performance: valid_attributes
121
121
  expect(response).to redirect_to(medium_of_performance)
122
122
  end
123
123
 
124
- it "moves its position when specified" do
124
+ it 'moves its position when specified' do
125
125
  medium_of_performance = MediumOfPerformance.create! valid_attributes
126
126
  position = medium_of_performance.position
127
- put :update, :id => medium_of_performance.id, :move => 'higher'
127
+ put :update, id: medium_of_performance.id, move: 'higher'
128
128
  expect(response).to redirect_to medium_of_performances_url
129
129
  assigns(:medium_of_performance).reload.position.should eq position - 1
130
130
  end
131
131
  end
132
132
 
133
- describe "with invalid params" do
134
- it "assigns the medium_of_performance as @medium_of_performance" do
133
+ describe 'with invalid params' do
134
+ it 'assigns the medium_of_performance as @medium_of_performance' do
135
135
  medium_of_performance = MediumOfPerformance.create! valid_attributes
136
136
  # Trigger the behavior that occurs when invalid params are submitted
137
137
  MediumOfPerformance.any_instance.stub(:save).and_return(false)
138
- put :update, :id => medium_of_performance.id, :medium_of_performance => {name: "test"}
138
+ put :update, id: medium_of_performance.id, medium_of_performance: { name: 'test' }
139
139
  expect(assigns(:medium_of_performance)).to eq(medium_of_performance)
140
140
  end
141
141
 
@@ -143,25 +143,24 @@ describe MediumOfPerformancesController do
143
143
  medium_of_performance = MediumOfPerformance.create! valid_attributes
144
144
  # Trigger the behavior that occurs when invalid params are submitted
145
145
  MediumOfPerformance.any_instance.stub(:save).and_return(false)
146
- put :update, :id => medium_of_performance.id, :medium_of_performance => {name: "test"}
147
- #expect(response).to render_template("edit")
146
+ put :update, id: medium_of_performance.id, medium_of_performance: { name: 'test' }
147
+ # expect(response).to render_template("edit")
148
148
  end
149
149
  end
150
150
  end
151
151
 
152
- describe "DELETE destroy" do
153
- it "destroys the requested medium_of_performance" do
152
+ describe 'DELETE destroy' do
153
+ it 'destroys the requested medium_of_performance' do
154
154
  medium_of_performance = MediumOfPerformance.create! valid_attributes
155
- expect {
156
- delete :destroy, :id => medium_of_performance.id
157
- }.to change(MediumOfPerformance, :count).by(-1)
155
+ expect do
156
+ delete :destroy, id: medium_of_performance.id
157
+ end.to change(MediumOfPerformance, :count).by(-1)
158
158
  end
159
159
 
160
- it "redirects to the medium_of_performances list" do
160
+ it 'redirects to the medium_of_performances list' do
161
161
  medium_of_performance = MediumOfPerformance.create! valid_attributes
162
- delete :destroy, :id => medium_of_performance.id
162
+ delete :destroy, id: medium_of_performance.id
163
163
  expect(response).to redirect_to(medium_of_performances_url)
164
164
  end
165
165
  end
166
-
167
166
  end
@@ -9,119 +9,119 @@ describe OwnsController do
9
9
  FactoryGirl.attributes_for(:own)
10
10
  end
11
11
 
12
- describe "GET index" do
12
+ describe 'GET index' do
13
13
  before(:each) do
14
14
  FactoryGirl.create(:own)
15
15
  end
16
16
 
17
- describe "When logged in as Administrator" do
17
+ describe 'When logged in as Administrator' do
18
18
  login_fixture_admin
19
19
 
20
- it "assigns all owns as @owns" do
20
+ it 'assigns all owns as @owns' do
21
21
  get :index
22
22
  expect(assigns(:owns)).to eq(Own.page(1))
23
23
  end
24
24
  end
25
25
 
26
- describe "When logged in as Librarian" do
26
+ describe 'When logged in as Librarian' do
27
27
  login_fixture_librarian
28
28
 
29
- it "assigns all owns as @owns" do
29
+ it 'assigns all owns as @owns' do
30
30
  get :index
31
31
  expect(assigns(:owns)).to eq(Own.page(1))
32
32
  end
33
33
  end
34
34
 
35
- describe "When logged in as User" do
35
+ describe 'When logged in as User' do
36
36
  login_fixture_user
37
37
 
38
- it "assigns all owns as @owns" do
38
+ it 'assigns all owns as @owns' do
39
39
  get :index
40
40
  expect(assigns(:owns)).to eq(Own.page(1))
41
41
  end
42
42
  end
43
43
 
44
- describe "When not logged in" do
45
- it "assigns all owns as @owns" do
44
+ describe 'When not logged in' do
45
+ it 'assigns all owns as @owns' do
46
46
  get :index
47
47
  expect(assigns(:owns)).to eq(Own.page(1))
48
48
  end
49
49
  end
50
50
  end
51
51
 
52
- describe "GET show" do
53
- describe "When logged in as Administrator" do
52
+ describe 'GET show' do
53
+ describe 'When logged in as Administrator' do
54
54
  login_fixture_admin
55
55
 
56
- it "assigns the requested own as @own" do
56
+ it 'assigns the requested own as @own' do
57
57
  own = FactoryGirl.create(:own)
58
- get :show, :id => own.id
58
+ get :show, id: own.id
59
59
  expect(assigns(:own)).to eq(own)
60
60
  end
61
61
  end
62
62
 
63
- describe "When logged in as Librarian" do
63
+ describe 'When logged in as Librarian' do
64
64
  login_fixture_librarian
65
65
 
66
- it "assigns the requested own as @own" do
66
+ it 'assigns the requested own as @own' do
67
67
  own = FactoryGirl.create(:own)
68
- get :show, :id => own.id
68
+ get :show, id: own.id
69
69
  expect(assigns(:own)).to eq(own)
70
70
  end
71
71
  end
72
72
 
73
- describe "When logged in as User" do
73
+ describe 'When logged in as User' do
74
74
  login_fixture_user
75
75
 
76
- it "assigns the requested own as @own" do
76
+ it 'assigns the requested own as @own' do
77
77
  own = FactoryGirl.create(:own)
78
- get :show, :id => own.id
78
+ get :show, id: own.id
79
79
  expect(assigns(:own)).to eq(own)
80
80
  end
81
81
  end
82
82
 
83
- describe "When not logged in" do
84
- it "assigns the requested own as @own" do
83
+ describe 'When not logged in' do
84
+ it 'assigns the requested own as @own' do
85
85
  own = FactoryGirl.create(:own)
86
- get :show, :id => own.id
86
+ get :show, id: own.id
87
87
  expect(assigns(:own)).to eq(own)
88
88
  end
89
89
  end
90
90
  end
91
91
 
92
- describe "GET new" do
93
- describe "When logged in as Administrator" do
92
+ describe 'GET new' do
93
+ describe 'When logged in as Administrator' do
94
94
  login_fixture_admin
95
95
 
96
- it "assigns the requested own as @own" do
96
+ it 'assigns the requested own as @own' do
97
97
  get :new
98
98
  expect(assigns(:own)).not_to be_valid
99
99
  expect(response).to be_success
100
100
  end
101
101
  end
102
102
 
103
- describe "When logged in as Librarian" do
103
+ describe 'When logged in as Librarian' do
104
104
  login_fixture_librarian
105
105
 
106
- it "assigns the requested own as @own" do
106
+ it 'assigns the requested own as @own' do
107
107
  get :new
108
108
  expect(assigns(:own)).not_to be_valid
109
109
  expect(response).to be_success
110
110
  end
111
111
  end
112
112
 
113
- describe "When logged in as User" do
113
+ describe 'When logged in as User' do
114
114
  login_fixture_user
115
115
 
116
- it "should not assign the requested own as @own" do
116
+ it 'should not assign the requested own as @own' do
117
117
  get :new
118
118
  expect(assigns(:own)).to be_nil
119
119
  expect(response).to be_forbidden
120
120
  end
121
121
  end
122
122
 
123
- describe "When not logged in" do
124
- it "should not assign the requested own as @own" do
123
+ describe 'When not logged in' do
124
+ it 'should not assign the requested own as @own' do
125
125
  get :new
126
126
  expect(assigns(:own)).to be_nil
127
127
  expect(response).to redirect_to(new_user_session_url)
@@ -129,316 +129,316 @@ describe OwnsController do
129
129
  end
130
130
  end
131
131
 
132
- describe "GET edit" do
133
- describe "When logged in as Administrator" do
132
+ describe 'GET edit' do
133
+ describe 'When logged in as Administrator' do
134
134
  login_fixture_admin
135
135
 
136
- it "assigns the requested own as @own" do
136
+ it 'assigns the requested own as @own' do
137
137
  own = FactoryGirl.create(:own)
138
- get :edit, :id => own.id
138
+ get :edit, id: own.id
139
139
  expect(assigns(:own)).to eq(own)
140
140
  end
141
141
  end
142
142
 
143
- describe "When logged in as Librarian" do
143
+ describe 'When logged in as Librarian' do
144
144
  login_fixture_librarian
145
145
 
146
- it "assigns the requested own as @own" do
146
+ it 'assigns the requested own as @own' do
147
147
  own = FactoryGirl.create(:own)
148
- get :edit, :id => own.id
148
+ get :edit, id: own.id
149
149
  expect(assigns(:own)).to eq(own)
150
150
  end
151
151
  end
152
152
 
153
- describe "When logged in as User" do
153
+ describe 'When logged in as User' do
154
154
  login_fixture_user
155
155
 
156
- it "assigns the requested own as @own" do
156
+ it 'assigns the requested own as @own' do
157
157
  own = FactoryGirl.create(:own)
158
- get :edit, :id => own.id
158
+ get :edit, id: own.id
159
159
  expect(response).to be_forbidden
160
160
  end
161
161
  end
162
162
 
163
- describe "When not logged in" do
164
- it "should not assign the requested own as @own" do
163
+ describe 'When not logged in' do
164
+ it 'should not assign the requested own as @own' do
165
165
  own = FactoryGirl.create(:own)
166
- get :edit, :id => own.id
166
+ get :edit, id: own.id
167
167
  expect(response).to redirect_to(new_user_session_url)
168
168
  end
169
169
  end
170
170
  end
171
171
 
172
- describe "POST create" do
172
+ describe 'POST create' do
173
173
  before(:each) do
174
174
  @attrs = valid_attributes
175
- @invalid_attrs = {:item_id => ''}
175
+ @invalid_attrs = { item_id: '' }
176
176
  end
177
177
 
178
- describe "When logged in as Administrator" do
178
+ describe 'When logged in as Administrator' do
179
179
  login_fixture_admin
180
180
 
181
- describe "with valid params" do
182
- it "assigns a newly created own as @own" do
183
- post :create, :own => @attrs
181
+ describe 'with valid params' do
182
+ it 'assigns a newly created own as @own' do
183
+ post :create, own: @attrs
184
184
  expect(assigns(:own)).to be_valid
185
185
  end
186
186
 
187
- it "redirects to the created agent" do
188
- post :create, :own => @attrs
187
+ it 'redirects to the created agent' do
188
+ post :create, own: @attrs
189
189
  expect(response).to redirect_to(assigns(:own))
190
190
  end
191
191
  end
192
192
 
193
- describe "with invalid params" do
194
- it "assigns a newly created but unsaved own as @own" do
195
- post :create, :own => @invalid_attrs
193
+ describe 'with invalid params' do
194
+ it 'assigns a newly created but unsaved own as @own' do
195
+ post :create, own: @invalid_attrs
196
196
  expect(assigns(:own)).not_to be_valid
197
197
  end
198
198
 
199
199
  it "re-renders the 'new' template" do
200
- post :create, :own => @invalid_attrs
201
- expect(response).to render_template("new")
200
+ post :create, own: @invalid_attrs
201
+ expect(response).to render_template('new')
202
202
  end
203
203
  end
204
204
  end
205
205
 
206
- describe "When logged in as Librarian" do
206
+ describe 'When logged in as Librarian' do
207
207
  login_fixture_librarian
208
208
 
209
- describe "with valid params" do
210
- it "assigns a newly created own as @own" do
211
- post :create, :own => @attrs
209
+ describe 'with valid params' do
210
+ it 'assigns a newly created own as @own' do
211
+ post :create, own: @attrs
212
212
  expect(assigns(:own)).to be_valid
213
213
  end
214
214
 
215
- it "redirects to the created agent" do
216
- post :create, :own => @attrs
215
+ it 'redirects to the created agent' do
216
+ post :create, own: @attrs
217
217
  expect(response).to redirect_to(assigns(:own))
218
218
  end
219
219
  end
220
220
 
221
- describe "with invalid params" do
222
- it "assigns a newly created but unsaved own as @own" do
223
- post :create, :own => @invalid_attrs
221
+ describe 'with invalid params' do
222
+ it 'assigns a newly created but unsaved own as @own' do
223
+ post :create, own: @invalid_attrs
224
224
  expect(assigns(:own)).not_to be_valid
225
225
  end
226
226
 
227
227
  it "re-renders the 'new' template" do
228
- post :create, :own => @invalid_attrs
229
- expect(response).to render_template("new")
228
+ post :create, own: @invalid_attrs
229
+ expect(response).to render_template('new')
230
230
  end
231
231
  end
232
232
  end
233
233
 
234
- describe "When logged in as User" do
234
+ describe 'When logged in as User' do
235
235
  login_fixture_user
236
236
 
237
- describe "with valid params" do
238
- it "assigns a newly created own as @own" do
239
- post :create, :own => @attrs
237
+ describe 'with valid params' do
238
+ it 'assigns a newly created own as @own' do
239
+ post :create, own: @attrs
240
240
  expect(assigns(:own)).to be_nil
241
241
  end
242
242
 
243
- it "should be forbidden" do
244
- post :create, :own => @attrs
243
+ it 'should be forbidden' do
244
+ post :create, own: @attrs
245
245
  expect(response).to be_forbidden
246
246
  end
247
247
  end
248
248
 
249
- describe "with invalid params" do
250
- it "assigns a newly created but unsaved own as @own" do
251
- post :create, :own => @invalid_attrs
249
+ describe 'with invalid params' do
250
+ it 'assigns a newly created but unsaved own as @own' do
251
+ post :create, own: @invalid_attrs
252
252
  expect(assigns(:own)).to be_nil
253
253
  end
254
254
 
255
- it "should be forbidden" do
256
- post :create, :own => @invalid_attrs
255
+ it 'should be forbidden' do
256
+ post :create, own: @invalid_attrs
257
257
  expect(response).to be_forbidden
258
258
  end
259
259
  end
260
260
  end
261
261
 
262
- describe "When not logged in" do
263
- describe "with valid params" do
264
- it "assigns a newly created own as @own" do
265
- post :create, :own => @attrs
262
+ describe 'When not logged in' do
263
+ describe 'with valid params' do
264
+ it 'assigns a newly created own as @own' do
265
+ post :create, own: @attrs
266
266
  expect(assigns(:own)).to be_nil
267
267
  end
268
268
 
269
- it "should be forbidden" do
270
- post :create, :own => @attrs
269
+ it 'should be forbidden' do
270
+ post :create, own: @attrs
271
271
  expect(response).to redirect_to(new_user_session_url)
272
272
  end
273
273
  end
274
274
 
275
- describe "with invalid params" do
276
- it "assigns a newly created but unsaved own as @own" do
277
- post :create, :own => @invalid_attrs
275
+ describe 'with invalid params' do
276
+ it 'assigns a newly created but unsaved own as @own' do
277
+ post :create, own: @invalid_attrs
278
278
  expect(assigns(:own)).to be_nil
279
279
  end
280
280
 
281
- it "should be forbidden" do
282
- post :create, :own => @invalid_attrs
281
+ it 'should be forbidden' do
282
+ post :create, own: @invalid_attrs
283
283
  expect(response).to redirect_to(new_user_session_url)
284
284
  end
285
285
  end
286
286
  end
287
287
  end
288
288
 
289
- describe "PUT update" do
289
+ describe 'PUT update' do
290
290
  before(:each) do
291
291
  @own = FactoryGirl.create(:own)
292
292
  @attrs = valid_attributes
293
- @invalid_attrs = {:item_id => ''}
293
+ @invalid_attrs = { item_id: '' }
294
294
  end
295
295
 
296
- describe "When logged in as Administrator" do
296
+ describe 'When logged in as Administrator' do
297
297
  login_fixture_admin
298
298
 
299
- describe "with valid params" do
300
- it "updates the requested own" do
301
- put :update, :id => @own.id, :own => @attrs
299
+ describe 'with valid params' do
300
+ it 'updates the requested own' do
301
+ put :update, id: @own.id, own: @attrs
302
302
  end
303
303
 
304
- it "assigns the requested own as @own" do
305
- put :update, :id => @own.id, :own => @attrs
304
+ it 'assigns the requested own as @own' do
305
+ put :update, id: @own.id, own: @attrs
306
306
  expect(assigns(:own)).to eq(@own)
307
307
  expect(response).to redirect_to(@own)
308
308
  end
309
309
 
310
- it "moves its position when specified" do
311
- put :update, :id => @own.id, :own => @attrs, :item_id => @own.item.id, :move => 'lower'
310
+ it 'moves its position when specified' do
311
+ put :update, id: @own.id, own: @attrs, item_id: @own.item.id, move: 'lower'
312
312
  expect(response).to redirect_to(owns_url(item_id: @own.item_id))
313
313
  end
314
314
  end
315
315
 
316
- describe "with invalid params" do
317
- it "assigns the requested own as @own" do
318
- put :update, :id => @own.id, :own => @invalid_attrs
319
- expect(response).to render_template("edit")
316
+ describe 'with invalid params' do
317
+ it 'assigns the requested own as @own' do
318
+ put :update, id: @own.id, own: @invalid_attrs
319
+ expect(response).to render_template('edit')
320
320
  end
321
321
  end
322
322
  end
323
323
 
324
- describe "When logged in as Librarian" do
324
+ describe 'When logged in as Librarian' do
325
325
  login_fixture_librarian
326
326
 
327
- describe "with valid params" do
328
- it "updates the requested own" do
329
- put :update, :id => @own.id, :own => @attrs
327
+ describe 'with valid params' do
328
+ it 'updates the requested own' do
329
+ put :update, id: @own.id, own: @attrs
330
330
  end
331
331
 
332
- it "assigns the requested own as @own" do
333
- put :update, :id => @own.id, :own => @attrs
332
+ it 'assigns the requested own as @own' do
333
+ put :update, id: @own.id, own: @attrs
334
334
  expect(assigns(:own)).to eq(@own)
335
335
  expect(response).to redirect_to(@own)
336
336
  end
337
337
  end
338
338
 
339
- describe "with invalid params" do
340
- it "assigns the requested own as @own" do
341
- put :update, :id => @own.id, :own => @invalid_attrs
342
- expect(response).to render_template("edit")
339
+ describe 'with invalid params' do
340
+ it 'assigns the requested own as @own' do
341
+ put :update, id: @own.id, own: @invalid_attrs
342
+ expect(response).to render_template('edit')
343
343
  end
344
344
  end
345
345
  end
346
346
 
347
- describe "When logged in as User" do
347
+ describe 'When logged in as User' do
348
348
  login_fixture_user
349
349
 
350
- describe "with valid params" do
351
- it "updates the requested own" do
352
- put :update, :id => @own.id, :own => @attrs
350
+ describe 'with valid params' do
351
+ it 'updates the requested own' do
352
+ put :update, id: @own.id, own: @attrs
353
353
  end
354
354
 
355
- it "assigns the requested own as @own" do
356
- put :update, :id => @own.id, :own => @attrs
355
+ it 'assigns the requested own as @own' do
356
+ put :update, id: @own.id, own: @attrs
357
357
  expect(assigns(:own)).to eq(@own)
358
358
  expect(response).to be_forbidden
359
359
  end
360
360
  end
361
361
 
362
- describe "with invalid params" do
363
- it "assigns the requested own as @own" do
364
- put :update, :id => @own.id, :own => @invalid_attrs
362
+ describe 'with invalid params' do
363
+ it 'assigns the requested own as @own' do
364
+ put :update, id: @own.id, own: @invalid_attrs
365
365
  expect(response).to be_forbidden
366
366
  end
367
367
  end
368
368
  end
369
369
 
370
- describe "When not logged in" do
371
- describe "with valid params" do
372
- it "updates the requested own" do
373
- put :update, :id => @own.id, :own => @attrs
370
+ describe 'When not logged in' do
371
+ describe 'with valid params' do
372
+ it 'updates the requested own' do
373
+ put :update, id: @own.id, own: @attrs
374
374
  end
375
375
 
376
- it "should be forbidden" do
377
- put :update, :id => @own.id, :own => @attrs
376
+ it 'should be forbidden' do
377
+ put :update, id: @own.id, own: @attrs
378
378
  expect(response).to redirect_to(new_user_session_url)
379
379
  end
380
380
  end
381
381
 
382
- describe "with invalid params" do
383
- it "assigns the requested own as @own" do
384
- put :update, :id => @own.id, :own => @invalid_attrs
382
+ describe 'with invalid params' do
383
+ it 'assigns the requested own as @own' do
384
+ put :update, id: @own.id, own: @invalid_attrs
385
385
  expect(response).to redirect_to(new_user_session_url)
386
386
  end
387
387
  end
388
388
  end
389
389
  end
390
390
 
391
- describe "DELETE destroy" do
391
+ describe 'DELETE destroy' do
392
392
  before(:each) do
393
393
  @own = FactoryGirl.create(:own)
394
394
  end
395
395
 
396
- describe "When logged in as Administrator" do
396
+ describe 'When logged in as Administrator' do
397
397
  login_fixture_admin
398
398
 
399
- it "destroys the requested own" do
400
- delete :destroy, :id => @own.id
399
+ it 'destroys the requested own' do
400
+ delete :destroy, id: @own.id
401
401
  end
402
402
 
403
- it "redirects to the owns list" do
404
- delete :destroy, :id => @own.id
403
+ it 'redirects to the owns list' do
404
+ delete :destroy, id: @own.id
405
405
  expect(response).to redirect_to(owns_url)
406
406
  end
407
407
  end
408
408
 
409
- describe "When logged in as Librarian" do
409
+ describe 'When logged in as Librarian' do
410
410
  login_fixture_librarian
411
411
 
412
- it "destroys the requested own" do
413
- delete :destroy, :id => @own.id
412
+ it 'destroys the requested own' do
413
+ delete :destroy, id: @own.id
414
414
  end
415
415
 
416
- it "redirects to the owns list" do
417
- delete :destroy, :id => @own.id
416
+ it 'redirects to the owns list' do
417
+ delete :destroy, id: @own.id
418
418
  expect(response).to redirect_to(owns_url)
419
419
  end
420
420
  end
421
421
 
422
- describe "When logged in as User" do
422
+ describe 'When logged in as User' do
423
423
  login_fixture_user
424
424
 
425
- it "destroys the requested own" do
426
- delete :destroy, :id => @own.id
425
+ it 'destroys the requested own' do
426
+ delete :destroy, id: @own.id
427
427
  end
428
428
 
429
- it "should be forbidden" do
430
- delete :destroy, :id => @own.id
429
+ it 'should be forbidden' do
430
+ delete :destroy, id: @own.id
431
431
  expect(response).to be_forbidden
432
432
  end
433
433
  end
434
434
 
435
- describe "When not logged in" do
436
- it "destroys the requested own" do
437
- delete :destroy, :id => @own.id
435
+ describe 'When not logged in' do
436
+ it 'destroys the requested own' do
437
+ delete :destroy, id: @own.id
438
438
  end
439
439
 
440
- it "should be forbidden" do
441
- delete :destroy, :id => @own.id
440
+ it 'should be forbidden' do
441
+ delete :destroy, id: @own.id
442
442
  expect(response).to redirect_to(new_user_session_url)
443
443
  end
444
444
  end