##// END OF EJS Templates
Prevent random failures due to params order....
Jean-Philippe Lang -
r8729:627754366c4c
parent child
Show More
@@ -121,7 +121,7 class ContextMenusControllerTest < ActionController::TestCase
121 121 field = IssueCustomField.create!(:name => 'List', :field_format => 'list',
122 122 :possible_values => ['Foo', 'Bar'], :is_for_all => true, :tracker_ids => [1, 2, 3])
123 123 @request.session[:user_id] = 2
124 get :issues, :ids => [1, 2]
124 get :issues, :ids => [1]
125 125
126 126 assert_tag 'a',
127 127 :content => 'List',
@@ -130,10 +130,10 class ContextMenusControllerTest < ActionController::TestCase
130 130
131 131 assert_tag 'a',
132 132 :content => 'Foo',
133 :attributes => {:href => "/issues/bulk_update?ids%5B%5D=1&amp;ids%5B%5D=2&amp;issue%5Bcustom_field_values%5D%5B#{field.id}%5D=Foo"}
133 :attributes => {:href => "/issues/bulk_update?ids%5B%5D=1&amp;issue%5Bcustom_field_values%5D%5B#{field.id}%5D=Foo"}
134 134 assert_tag 'a',
135 135 :content => 'none',
136 :attributes => {:href => "/issues/bulk_update?ids%5B%5D=1&amp;ids%5B%5D=2&amp;issue%5Bcustom_field_values%5D%5B#{field.id}%5D="}
136 :attributes => {:href => "/issues/bulk_update?ids%5B%5D=1&amp;issue%5Bcustom_field_values%5D%5B#{field.id}%5D="}
137 137 end
138 138
139 139 def test_context_menu_should_not_include_null_value_for_required_custom_fields
@@ -170,7 +170,7 class ContextMenusControllerTest < ActionController::TestCase
170 170 field = IssueCustomField.create!(:name => 'Bool', :field_format => 'bool',
171 171 :is_for_all => true, :tracker_ids => [1, 2, 3])
172 172 @request.session[:user_id] = 2
173 get :issues, :ids => [1, 2]
173 get :issues, :ids => [1]
174 174
175 175 assert_tag 'a',
176 176 :content => 'Bool',
@@ -179,14 +179,14 class ContextMenusControllerTest < ActionController::TestCase
179 179
180 180 assert_tag 'a',
181 181 :content => 'Yes',
182 :attributes => {:href => "/issues/bulk_update?ids%5B%5D=1&amp;ids%5B%5D=2&amp;issue%5Bcustom_field_values%5D%5B#{field.id}%5D=1"}
182 :attributes => {:href => "/issues/bulk_update?ids%5B%5D=1&amp;issue%5Bcustom_field_values%5D%5B#{field.id}%5D=1"}
183 183 end
184 184
185 185 def test_context_menu_should_include_user_custom_fields
186 186 field = IssueCustomField.create!(:name => 'User', :field_format => 'user',
187 187 :is_for_all => true, :tracker_ids => [1, 2, 3])
188 188 @request.session[:user_id] = 2
189 get :issues, :ids => [1, 2]
189 get :issues, :ids => [1]
190 190
191 191 assert_tag 'a',
192 192 :content => 'User',
@@ -195,13 +195,13 class ContextMenusControllerTest < ActionController::TestCase
195 195
196 196 assert_tag 'a',
197 197 :content => 'John Smith',
198 :attributes => {:href => "/issues/bulk_update?ids%5B%5D=1&amp;ids%5B%5D=2&amp;issue%5Bcustom_field_values%5D%5B#{field.id}%5D=2"}
198 :attributes => {:href => "/issues/bulk_update?ids%5B%5D=1&amp;issue%5Bcustom_field_values%5D%5B#{field.id}%5D=2"}
199 199 end
200 200
201 201 def test_context_menu_should_include_version_custom_fields
202 202 field = IssueCustomField.create!(:name => 'Version', :field_format => 'version', :is_for_all => true, :tracker_ids => [1, 2, 3])
203 203 @request.session[:user_id] = 2
204 get :issues, :ids => [1, 2]
204 get :issues, :ids => [1]
205 205
206 206 assert_tag 'a',
207 207 :content => 'Version',
@@ -210,7 +210,7 class ContextMenusControllerTest < ActionController::TestCase
210 210
211 211 assert_tag 'a',
212 212 :content => '2.0',
213 :attributes => {:href => "/issues/bulk_update?ids%5B%5D=1&amp;ids%5B%5D=2&amp;issue%5Bcustom_field_values%5D%5B#{field.id}%5D=3"}
213 :attributes => {:href => "/issues/bulk_update?ids%5B%5D=1&amp;issue%5Bcustom_field_values%5D%5B#{field.id}%5D=3"}
214 214 end
215 215
216 216 def test_context_menu_by_assignable_user_should_include_assigned_to_me_link
General Comments 0
You need to be logged in to leave comments. Login now