express_admin 1.4.2 → 1.4.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8d0cb644b0a6b67ff6a3eade7c88f675ecc1ce9a
4
- data.tar.gz: 6db95735643716572edcd70c560ca8fd88213e37
3
+ metadata.gz: 36b10649f1dd72c389614c2e9ef15b1b743f110b
4
+ data.tar.gz: 18eef699334093cd6de86eb41f3d1df61c1cff6c
5
5
  SHA512:
6
- metadata.gz: 049fe5f7dec528a19d21b8c67b8bca3416a6cda7463083223c74892ec90edc70f8497251db26ef71b2275f2f0107467aab60468a592c5ecd77721930d63d1406
7
- data.tar.gz: 174a3af62f1f3509ac001f41bf2ac8ce71ed9fe4f503b307742b4d5dfce08ed75ecac5eb1a6b2e64292132f8aff25f2d04b07647a999bfda169a033b03aacc04
6
+ metadata.gz: ee14907c84d0768486dbf135f900f7faaf34726ca855e8b1477607450d4d5593ef69b314800175890d14fad5bb9460c9bcb4d536dc04d224f68a745df326c67e
7
+ data.tar.gz: 2cae3014936bc711a0aeb9b61d8a6028add8a952c6c398b0a0baeaa41424a737e39b0a0157dfcd2d445298057fccca284f75be2f8e2da2c25d872b6e6b01cea9
@@ -1,3 +1,3 @@
1
1
  module ExpressAdmin
2
- VERSION = "1.4.2"
2
+ VERSION = "1.4.3"
3
3
  end
Binary file
@@ -84,7 +84,7 @@ module ExpressAdmin
84
84
  end
85
85
 
86
86
  test "fields are wrapped in a div" do
87
- assert_match '<div class="field-wrapper">', widget_form
87
+ assert_match /<div class="[^"]*field-wrapper"/, widget_form
88
88
  end
89
89
 
90
90
  test 'path prefix is provided' do
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- express_templates (0.8.0)
4
+ express_templates (0.9.0)
5
5
  activesupport (~> 4.2)
6
- arbre
6
+ arbre (~> 1.0)
7
7
  parslet (~> 1.6)
8
8
 
9
9
  GEM
@@ -16,7 +16,7 @@ module ExpressTemplates
16
16
  begin
17
17
  super()
18
18
  rescue
19
- add_class(config[:class])
19
+ add_class(config[:wrapper_class])
20
20
  remove_class('submit')
21
21
  end
22
22
  }
@@ -1,3 +1,3 @@
1
1
  module ExpressTemplates
2
- VERSION = "0.9.0"
2
+ VERSION = "0.9.1"
3
3
  end
@@ -4033,3 +4033,1215 @@ ExpressFormTest: test_simplest_form_uses_form_action_for_the_action
4033
4033
  -----------------------------------------------------------
4034
4034
  ExpressFormTest: test_simplest_form_will_have_the_proper_id
4035
4035
  -----------------------------------------------------------
4036
+ ---------------------------------------------------------------------------------------------
4037
+ IndenterTest: test_.for(:name)_returns_current_indent_without_newline_when_block_is_not_given
4038
+ ---------------------------------------------------------------------------------------------
4039
+ -----------------------------------------------------------------
4040
+ IndenterTest: test_.for(:name)_takes_a_block_receiving_whitespace
4041
+ -----------------------------------------------------------------
4042
+ ------------------------------------------------------------------
4043
+ IndenterTest: test_nesting_blocks_increases_whitespace_accordingly
4044
+ ------------------------------------------------------------------
4045
+ ------------------------------------------------
4046
+ ProcTest: test_#source_body_handles_funky_bodies
4047
+ ------------------------------------------------
4048
+ ----------------------------------------------------------
4049
+ ProcTest: test_#source_body_raises_exception_for_arity_>_0
4050
+ ----------------------------------------------------------
4051
+ ------------------------------------------------------
4052
+ ProcTest: test_#source_body_returns_the_body_of_a_proc
4053
+ ------------------------------------------------------
4054
+ ----------------------------------------------
4055
+ ProcTest: test_#source_returns_a_proc's_source
4056
+ ----------------------------------------------
4057
+ ---------------------------------------------------------------
4058
+ ProcTest: test_#source_work_with_a_stabby_lambda_spanning_lines
4059
+ ---------------------------------------------------------------
4060
+ ------------------------------------------------------------
4061
+ ProcTest: test_#source_works_with_a_block_containing_a_block
4062
+ ------------------------------------------------------------
4063
+ --------------------------------------------
4064
+ ProcTest: test_#source_works_with_a_do_block
4065
+ --------------------------------------------
4066
+ -----------------------------------------------------
4067
+ ProcTest: test_#source_works_with_a_single_line_block
4068
+ -----------------------------------------------------
4069
+ -------------------------------------------------
4070
+ ProcTest: test_#source_works_with_a_stabby_lambda
4071
+ -------------------------------------------------
4072
+ ----------------------------------------------------------------------------------------
4073
+ ProcTest: test_.from_source_stores_source_of_a_dynamicly_built_proc_for_later_inspection
4074
+ ----------------------------------------------------------------------------------------
4075
+ -----------------------------------------------------------------------------------------
4076
+ ProcTest: test_.source_body_captures_full_body_when_parens_around_parameters_not_provided
4077
+ -----------------------------------------------------------------------------------------
4078
+ -----------------------------------------
4079
+ HelloControllerTest: test_should_get_show
4080
+ -----------------------------------------
4081
+ Processing by HelloController#show as HTML
4082
+ Rendered hello/show.html.et within layouts/application (0.5ms)
4083
+ Completed 200 OK in 110ms (Views: 109.9ms)
4084
+ --------------------------------------------------------------
4085
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
4086
+ --------------------------------------------------------------
4087
+ ------------------------------------------------------------------------
4088
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
4089
+ ------------------------------------------------------------------------
4090
+ ----------------------------------------------------------
4091
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
4092
+ ----------------------------------------------------------
4093
+ -----------------------------
4094
+ HandlerTest: test_locals_work
4095
+ -----------------------------
4096
+ ------------------------------------------------------------
4097
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
4098
+ ------------------------------------------------------------
4099
+ ----------------------------------
4100
+ HandlerTest: test_other_attributes
4101
+ ----------------------------------
4102
+ -------------------------------------------
4103
+ HandlerTest: test_our_handler_is_registered
4104
+ -------------------------------------------
4105
+ ---------------------------------------
4106
+ HandlerTest: test_string_in_block_works
4107
+ ---------------------------------------
4108
+ -------------------------------------
4109
+ BasicFieldsTest: test_all_fields_work
4110
+ -------------------------------------
4111
+ ---------------------------------------------------------------------------------
4112
+ BasicFieldsTest: test_hidden_field_passes_additional_html_options_to_rails_helper
4113
+ ---------------------------------------------------------------------------------
4114
+ ---------------------------------------------------------
4115
+ BasicFieldsTest: test_hidden_uses_rails_hidden_tag_helper
4116
+ ---------------------------------------------------------
4117
+ ---------------------------------------------------------
4118
+ BasicFieldsTest: test_passing_html_options_to_fields_work
4119
+ ---------------------------------------------------------
4120
+ -----------------------------------------------------------------------------
4121
+ BasicFieldsTest: test_textarea_passes_additional_html_options_to_rails_helper
4122
+ -----------------------------------------------------------------------------
4123
+ ----------------------------------------------------------
4124
+ BasicFieldsTest: test_textarea_uses_rails_text_area_helper
4125
+ ----------------------------------------------------------
4126
+ -------------------------------------------------------------
4127
+ CheckboxTest: test_checkbox_places_the_label_before_the_input
4128
+ -------------------------------------------------------------
4129
+ -------------------------------------------------------
4130
+ CheckboxTest: test_checkbox_respects_label_after:_true_
4131
+ -------------------------------------------------------
4132
+ -----------------------------------------------------------------------------
4133
+ ConfigurableTest: test_.has_argument_adds_a_positional_configuration_argument
4134
+ -----------------------------------------------------------------------------
4135
+ ----------------------------------------------------------------------------------------
4136
+ ConfigurableTest: test_.has_argument_appends_supported_arguments_in_order_of_inheritence
4137
+ ----------------------------------------------------------------------------------------
4138
+ -------------------------------------------------------------------------------
4139
+ ConfigurableTest: test_.has_argument_as:_allows_overwrite_of_inherited_argument
4140
+ -------------------------------------------------------------------------------
4141
+ -----------------------------------------------------------------------------------------------------
4142
+ ConfigurableTest: test_.has_argument_makes_builder_arguments_accessible_by_name_according_to_position
4143
+ -----------------------------------------------------------------------------------------------------
4144
+ ---------------------------------------------------
4145
+ ConfigurableTest: test_default_values_are_supported
4146
+ ---------------------------------------------------
4147
+ ----------------------------------------------------------------------
4148
+ ConfigurableTest: test_default_values_for_attributes_can_be_overridden
4149
+ ----------------------------------------------------------------------
4150
+ ------------------------------------------------------------------------
4151
+ ConfigurableTest: test_does_not_pass_declared_options_as_html_attributes
4152
+ ------------------------------------------------------------------------
4153
+ -----------------------------------------------------------
4154
+ ConfigurableTest: test_has_no_id_attribute_if_not_specified
4155
+ -----------------------------------------------------------
4156
+ --------------------------------------------
4157
+ ConfigurableTest: test_options_are_inherited
4158
+ --------------------------------------------
4159
+ -------------------------------------------------------
4160
+ ConfigurableTest: test_renders_first_argument_as_dom_id
4161
+ -------------------------------------------------------
4162
+ ----------------------------------------------------
4163
+ ConfigurableTest: test_required_options_are_required
4164
+ ----------------------------------------------------
4165
+ --------------------------------------------------
4166
+ ConfigurableTest: test_supports_option_declaration
4167
+ --------------------------------------------------
4168
+ ---------------------------------------------------------------
4169
+ ConfigurableTest: test_unrecognized_options_raises_an_exception
4170
+ ---------------------------------------------------------------
4171
+ ------------------------------------------------------------------------------------
4172
+ StringTest: test_String#inspect_works_normally_when_#to_view_code_hasn't_been_called
4173
+ ------------------------------------------------------------------------------------
4174
+ --------------------------------------------------------------------------------
4175
+ StringTest: test_String#to_view_code_causes_subsequent_#inspect_to_remove_quotes
4176
+ --------------------------------------------------------------------------------
4177
+ -------------------------------------------------------
4178
+ StringTest: test_String#to_view_code_returns_the_string
4179
+ -------------------------------------------------------
4180
+ ------------------------------------------------------------------------------------
4181
+ InterpolatorTest: test_"{{some_{{thing}}_foo}}"_transforms_to_"#{some_#{thing}_foo}"
4182
+ ------------------------------------------------------------------------------------
4183
+ -------------------------------------------------------------------
4184
+ InterpolatorTest: test_"{{something}}"_transforms_to_"#{something}"
4185
+ -------------------------------------------------------------------
4186
+ ---------------------------------------------------------------------
4187
+ InterpolatorTest: test_'a_lot_of_{{something_"{{good}}"}}'_transforms
4188
+ ---------------------------------------------------------------------
4189
+ ---------------------------------------------------------------------
4190
+ InterpolatorTest: test_nested_with_multiple_nested_expressions_parses
4191
+ ---------------------------------------------------------------------
4192
+ ----------------------------------------------------
4193
+ InterpolatorTest: test_nested_with_outer_text_parses
4194
+ ----------------------------------------------------
4195
+ -------------------------------------------------------
4196
+ InterpolatorTest: test_nested_without_outer_text_parses
4197
+ -------------------------------------------------------
4198
+ ---------------------------------------------------------------------
4199
+ InterpolatorTest: test_simple_expression_with_surrounding_text_parses
4200
+ ---------------------------------------------------------------------
4201
+ -------------------------------------------------
4202
+ InterpolatorTest: test_simplest_expression_parses
4203
+ -------------------------------------------------
4204
+ -----------------------------------------------------------------
4205
+ BaseTest: test_.contains_places_fragment_inside_the_enclosing_tag
4206
+ -----------------------------------------------------------------
4207
+ ---------------------------------------------------------
4208
+ BaseTest: test_.has_attributes_creates_default_attributes
4209
+ ---------------------------------------------------------
4210
+ -----------------------------------------------------
4211
+ BaseTest: test_.tag_name_determines_the_enclosing_tag
4212
+ -----------------------------------------------------
4213
+ --------------------------------------------------
4214
+ BaseTest: test_before_build_hook_runs_before_build
4215
+ --------------------------------------------------
4216
+ --------------------------------------------------------------
4217
+ BaseTest: test_class_name_is_dasherized_instead_of_underscored
4218
+ --------------------------------------------------------------
4219
+ -----------------------------------------------------------
4220
+ BaseTest: test_class_option_adds_a_class,_does_not_override
4221
+ -----------------------------------------------------------
4222
+ ----------------------------------------------------
4223
+ BaseTest: test_options_are_passed_to_html_attributes
4224
+ ----------------------------------------------------
4225
+ --------------------------------------------------------------------------------------------------
4226
+ ExpressTemplates::ResourcefulTest: test_#resource_class_returns_resource_class_option_if_specified
4227
+ --------------------------------------------------------------------------------------------------
4228
+ -----------------------------------------------------------------------------------------
4229
+ ExpressTemplates::ResourcefulTest: test_infers_a_namespace_and_no_prefix_within_an_engine
4230
+ -----------------------------------------------------------------------------------------
4231
+ ---------------------------------------------------------------------------------------------------
4232
+ ExpressTemplates::ResourcefulTest: test_infers_namespace_and_path_prefix_within_an_engine_and_scope
4233
+ ---------------------------------------------------------------------------------------------------
4234
+ ------------------------------------------------------------------------------------------------
4235
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_infers_prefix_within_a_scope_within_an_app
4236
+ ------------------------------------------------------------------------------------------------
4237
+ -----------------------------------------------------------------------------
4238
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_no_prefix_within_an_app
4239
+ -----------------------------------------------------------------------------
4240
+ ---------------------------------------------------------------------
4241
+ ExpressTemplatesTest: test_ExpressTemplates.render_renders_a_template
4242
+ ---------------------------------------------------------------------
4243
+ -------------------------------------------
4244
+ ExpressTemplatesTest: test_we_have_a_module
4245
+ -------------------------------------------
4246
+ --------------------------------------------
4247
+ CompilerTest: test_.compile_returns_a_string
4248
+ --------------------------------------------
4249
+ ----------------------------------------------
4250
+ SubmitTest: test_submit_accepts_a_class_option
4251
+ ----------------------------------------------
4252
+ --------------------------------------------------------
4253
+ SubmitTest: test_submit_accepts_a_value_and_class_option
4254
+ --------------------------------------------------------
4255
+ ----------------------------------------------------
4256
+ SubmitTest: test_submit_takes_string_param_for_value
4257
+ ----------------------------------------------------
4258
+ ------------------------------------------------------------
4259
+ TreeForTest: test_tree_for_accepts_block_with_custom_content
4260
+ ------------------------------------------------------------
4261
+ ---------------------------------------------------------------------------
4262
+ TreeForTest: test_tree_for_renders_correct_markup_with_node.name_as_default
4263
+ ---------------------------------------------------------------------------
4264
+ -----------------------------------------------------------
4265
+ RadioTest: test_radio_has_correct_label_field_name_and_text
4266
+ -----------------------------------------------------------
4267
+ ------------------------------------------------------------------
4268
+ RadioTest: test_radio_options_from_collection_when_options_omitted
4269
+ ------------------------------------------------------------------
4270
+ ----------------------------------------------------------
4271
+ RadioTest: test_radio_options_may_be_specified_with_a_hash
4272
+ ----------------------------------------------------------
4273
+ --------------------------------------------------------
4274
+ RadioTest: test_radio_options_present_with_class_'radio'
4275
+ --------------------------------------------------------
4276
+ -------------------------------------------------
4277
+ RadioTest: test_radio_requires_a_parent_component
4278
+ -------------------------------------------------
4279
+ ------------------------------------------------------------
4280
+ RadioTest: test_radio_throws_error_if_given_improper_options
4281
+ ------------------------------------------------------------
4282
+ ----------------------------------------------------------------
4283
+ SelectTest: test_select_collection_works_using_collection_select
4284
+ ----------------------------------------------------------------
4285
+ ------------------------------------------
4286
+ SelectTest: test_select_comes_with_a_label
4287
+ ------------------------------------------
4288
+ --------------------------------------------------
4289
+ SelectTest: test_select_defaults_can_be_overridden
4290
+ --------------------------------------------------
4291
+ -------------------------------------------------------
4292
+ SelectTest: test_select_defaults_to_include_blank:_true
4293
+ -------------------------------------------------------
4294
+ ------------------------------------------------------------------------------------
4295
+ SelectTest: test_select_generates_correct_options_when_values_are_specified_as_array
4296
+ ------------------------------------------------------------------------------------
4297
+ ------------------------------------------------------------------------
4298
+ SelectTest: test_select_generates_options_from_data_when_options_omitted
4299
+ ------------------------------------------------------------------------
4300
+ --------------------------------------------------------------
4301
+ SelectTest: test_select_multiple:_true_if_passed_multiple_true
4302
+ --------------------------------------------------------------
4303
+ -----------------------------------------------------------------------------------------
4304
+ SelectTest: test_select_multiple_gets_options_from_associated_has_many_through_collection
4305
+ -----------------------------------------------------------------------------------------
4306
+ ---------------------------------------------------
4307
+ SelectTest: test_select_requires_a_parent_component
4308
+ ---------------------------------------------------
4309
+ ---------------------------------------------------------------------------
4310
+ SelectTest: test_select_uses_options_from_collect..._when_field_is_relation
4311
+ ---------------------------------------------------------------------------
4312
+ -------------------------------------------------------------------------
4313
+ SelectTest: test_selected_option_is_omitted_selection_is_taken_from_model
4314
+ -------------------------------------------------------------------------
4315
+ ---------------------------------------------------------------
4316
+ ExpressFormTest: test_express_form_contents_are_inside_the_form
4317
+ ---------------------------------------------------------------
4318
+ ---------------------------------------------------------
4319
+ ExpressFormTest: test_express_form_default_method_is_POST
4320
+ ---------------------------------------------------------
4321
+ -----------------------------------------------------
4322
+ ExpressFormTest: test_simplest_form_contains_form_tag
4323
+ -----------------------------------------------------
4324
+ ---------------------------------------------------------------
4325
+ ExpressFormTest: test_simplest_form_contains_rails_form_helpers
4326
+ ---------------------------------------------------------------
4327
+ ---------------------------------------------------
4328
+ ExpressFormTest: test_simplest_form_contains_submit
4329
+ ---------------------------------------------------
4330
+ -------------------------------------------
4331
+ ExpressFormTest: test_simplest_form_renders
4332
+ -------------------------------------------
4333
+ -------------------------------------------------------------------
4334
+ ExpressFormTest: test_simplest_form_uses_form_action_for_the_action
4335
+ -------------------------------------------------------------------
4336
+ -----------------------------------------------------------
4337
+ ExpressFormTest: test_simplest_form_will_have_the_proper_id
4338
+ -----------------------------------------------------------
4339
+ -----------------------------------------
4340
+ HelloControllerTest: test_should_get_show
4341
+ -----------------------------------------
4342
+ Processing by HelloController#show as HTML
4343
+ Rendered hello/show.html.et within layouts/application (0.5ms)
4344
+ Completed 200 OK in 110ms (Views: 110.2ms)
4345
+ ------------------------------------------------
4346
+ ProcTest: test_#source_body_handles_funky_bodies
4347
+ ------------------------------------------------
4348
+ ----------------------------------------------------------
4349
+ ProcTest: test_#source_body_raises_exception_for_arity_>_0
4350
+ ----------------------------------------------------------
4351
+ ------------------------------------------------------
4352
+ ProcTest: test_#source_body_returns_the_body_of_a_proc
4353
+ ------------------------------------------------------
4354
+ ----------------------------------------------
4355
+ ProcTest: test_#source_returns_a_proc's_source
4356
+ ----------------------------------------------
4357
+ ---------------------------------------------------------------
4358
+ ProcTest: test_#source_work_with_a_stabby_lambda_spanning_lines
4359
+ ---------------------------------------------------------------
4360
+ ------------------------------------------------------------
4361
+ ProcTest: test_#source_works_with_a_block_containing_a_block
4362
+ ------------------------------------------------------------
4363
+ --------------------------------------------
4364
+ ProcTest: test_#source_works_with_a_do_block
4365
+ --------------------------------------------
4366
+ -----------------------------------------------------
4367
+ ProcTest: test_#source_works_with_a_single_line_block
4368
+ -----------------------------------------------------
4369
+ -------------------------------------------------
4370
+ ProcTest: test_#source_works_with_a_stabby_lambda
4371
+ -------------------------------------------------
4372
+ ----------------------------------------------------------------------------------------
4373
+ ProcTest: test_.from_source_stores_source_of_a_dynamicly_built_proc_for_later_inspection
4374
+ ----------------------------------------------------------------------------------------
4375
+ -----------------------------------------------------------------------------------------
4376
+ ProcTest: test_.source_body_captures_full_body_when_parens_around_parameters_not_provided
4377
+ -----------------------------------------------------------------------------------------
4378
+ -----------------------------------------------------------
4379
+ RadioTest: test_radio_has_correct_label_field_name_and_text
4380
+ -----------------------------------------------------------
4381
+ ------------------------------------------------------------------
4382
+ RadioTest: test_radio_options_from_collection_when_options_omitted
4383
+ ------------------------------------------------------------------
4384
+ ----------------------------------------------------------
4385
+ RadioTest: test_radio_options_may_be_specified_with_a_hash
4386
+ ----------------------------------------------------------
4387
+ --------------------------------------------------------
4388
+ RadioTest: test_radio_options_present_with_class_'radio'
4389
+ --------------------------------------------------------
4390
+ -------------------------------------------------
4391
+ RadioTest: test_radio_requires_a_parent_component
4392
+ -------------------------------------------------
4393
+ ------------------------------------------------------------
4394
+ RadioTest: test_radio_throws_error_if_given_improper_options
4395
+ ------------------------------------------------------------
4396
+ -------------------------------------
4397
+ BasicFieldsTest: test_all_fields_work
4398
+ -------------------------------------
4399
+ ---------------------------------------------------------------------------------
4400
+ BasicFieldsTest: test_hidden_field_passes_additional_html_options_to_rails_helper
4401
+ ---------------------------------------------------------------------------------
4402
+ ---------------------------------------------------------
4403
+ BasicFieldsTest: test_hidden_uses_rails_hidden_tag_helper
4404
+ ---------------------------------------------------------
4405
+ ---------------------------------------------------------
4406
+ BasicFieldsTest: test_passing_html_options_to_fields_work
4407
+ ---------------------------------------------------------
4408
+ -----------------------------------------------------------------------------
4409
+ BasicFieldsTest: test_textarea_passes_additional_html_options_to_rails_helper
4410
+ -----------------------------------------------------------------------------
4411
+ ----------------------------------------------------------
4412
+ BasicFieldsTest: test_textarea_uses_rails_text_area_helper
4413
+ ----------------------------------------------------------
4414
+ -------------------------------------------------------------
4415
+ CheckboxTest: test_checkbox_places_the_label_before_the_input
4416
+ -------------------------------------------------------------
4417
+ -------------------------------------------------------
4418
+ CheckboxTest: test_checkbox_respects_label_after:_true_
4419
+ -------------------------------------------------------
4420
+ ------------------------------------------------------------------------------------
4421
+ StringTest: test_String#inspect_works_normally_when_#to_view_code_hasn't_been_called
4422
+ ------------------------------------------------------------------------------------
4423
+ --------------------------------------------------------------------------------
4424
+ StringTest: test_String#to_view_code_causes_subsequent_#inspect_to_remove_quotes
4425
+ --------------------------------------------------------------------------------
4426
+ -------------------------------------------------------
4427
+ StringTest: test_String#to_view_code_returns_the_string
4428
+ -------------------------------------------------------
4429
+ --------------------------------------------------------------
4430
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
4431
+ --------------------------------------------------------------
4432
+ ------------------------------------------------------------------------
4433
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
4434
+ ------------------------------------------------------------------------
4435
+ ----------------------------------------------------------
4436
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
4437
+ ----------------------------------------------------------
4438
+ -----------------------------
4439
+ HandlerTest: test_locals_work
4440
+ -----------------------------
4441
+ ------------------------------------------------------------
4442
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
4443
+ ------------------------------------------------------------
4444
+ ----------------------------------
4445
+ HandlerTest: test_other_attributes
4446
+ ----------------------------------
4447
+ -------------------------------------------
4448
+ HandlerTest: test_our_handler_is_registered
4449
+ -------------------------------------------
4450
+ ---------------------------------------
4451
+ HandlerTest: test_string_in_block_works
4452
+ ---------------------------------------
4453
+ -----------------------------------------------------------------------------
4454
+ ConfigurableTest: test_.has_argument_adds_a_positional_configuration_argument
4455
+ -----------------------------------------------------------------------------
4456
+ ----------------------------------------------------------------------------------------
4457
+ ConfigurableTest: test_.has_argument_appends_supported_arguments_in_order_of_inheritence
4458
+ ----------------------------------------------------------------------------------------
4459
+ -------------------------------------------------------------------------------
4460
+ ConfigurableTest: test_.has_argument_as:_allows_overwrite_of_inherited_argument
4461
+ -------------------------------------------------------------------------------
4462
+ -----------------------------------------------------------------------------------------------------
4463
+ ConfigurableTest: test_.has_argument_makes_builder_arguments_accessible_by_name_according_to_position
4464
+ -----------------------------------------------------------------------------------------------------
4465
+ ---------------------------------------------------
4466
+ ConfigurableTest: test_default_values_are_supported
4467
+ ---------------------------------------------------
4468
+ ----------------------------------------------------------------------
4469
+ ConfigurableTest: test_default_values_for_attributes_can_be_overridden
4470
+ ----------------------------------------------------------------------
4471
+ ------------------------------------------------------------------------
4472
+ ConfigurableTest: test_does_not_pass_declared_options_as_html_attributes
4473
+ ------------------------------------------------------------------------
4474
+ -----------------------------------------------------------
4475
+ ConfigurableTest: test_has_no_id_attribute_if_not_specified
4476
+ -----------------------------------------------------------
4477
+ --------------------------------------------
4478
+ ConfigurableTest: test_options_are_inherited
4479
+ --------------------------------------------
4480
+ -------------------------------------------------------
4481
+ ConfigurableTest: test_renders_first_argument_as_dom_id
4482
+ -------------------------------------------------------
4483
+ ----------------------------------------------------
4484
+ ConfigurableTest: test_required_options_are_required
4485
+ ----------------------------------------------------
4486
+ --------------------------------------------------
4487
+ ConfigurableTest: test_supports_option_declaration
4488
+ --------------------------------------------------
4489
+ ---------------------------------------------------------------
4490
+ ConfigurableTest: test_unrecognized_options_raises_an_exception
4491
+ ---------------------------------------------------------------
4492
+ ----------------------------------------------
4493
+ SubmitTest: test_submit_accepts_a_class_option
4494
+ ----------------------------------------------
4495
+ --------------------------------------------------------
4496
+ SubmitTest: test_submit_accepts_a_value_and_class_option
4497
+ --------------------------------------------------------
4498
+ ----------------------------------------------------
4499
+ SubmitTest: test_submit_takes_string_param_for_value
4500
+ ----------------------------------------------------
4501
+ -----------------------------------------------------------------
4502
+ BaseTest: test_.contains_places_fragment_inside_the_enclosing_tag
4503
+ -----------------------------------------------------------------
4504
+ ---------------------------------------------------------
4505
+ BaseTest: test_.has_attributes_creates_default_attributes
4506
+ ---------------------------------------------------------
4507
+ -----------------------------------------------------
4508
+ BaseTest: test_.tag_name_determines_the_enclosing_tag
4509
+ -----------------------------------------------------
4510
+ --------------------------------------------------
4511
+ BaseTest: test_before_build_hook_runs_before_build
4512
+ --------------------------------------------------
4513
+ --------------------------------------------------------------
4514
+ BaseTest: test_class_name_is_dasherized_instead_of_underscored
4515
+ --------------------------------------------------------------
4516
+ -----------------------------------------------------------
4517
+ BaseTest: test_class_option_adds_a_class,_does_not_override
4518
+ -----------------------------------------------------------
4519
+ ----------------------------------------------------
4520
+ BaseTest: test_options_are_passed_to_html_attributes
4521
+ ----------------------------------------------------
4522
+ ---------------------------------------------------------------
4523
+ ExpressFormTest: test_express_form_contents_are_inside_the_form
4524
+ ---------------------------------------------------------------
4525
+ ---------------------------------------------------------
4526
+ ExpressFormTest: test_express_form_default_method_is_POST
4527
+ ---------------------------------------------------------
4528
+ -----------------------------------------------------
4529
+ ExpressFormTest: test_simplest_form_contains_form_tag
4530
+ -----------------------------------------------------
4531
+ ---------------------------------------------------------------
4532
+ ExpressFormTest: test_simplest_form_contains_rails_form_helpers
4533
+ ---------------------------------------------------------------
4534
+ ---------------------------------------------------
4535
+ ExpressFormTest: test_simplest_form_contains_submit
4536
+ ---------------------------------------------------
4537
+ -------------------------------------------
4538
+ ExpressFormTest: test_simplest_form_renders
4539
+ -------------------------------------------
4540
+ -------------------------------------------------------------------
4541
+ ExpressFormTest: test_simplest_form_uses_form_action_for_the_action
4542
+ -------------------------------------------------------------------
4543
+ -----------------------------------------------------------
4544
+ ExpressFormTest: test_simplest_form_will_have_the_proper_id
4545
+ -----------------------------------------------------------
4546
+ ------------------------------------------------------------------------------------
4547
+ InterpolatorTest: test_"{{some_{{thing}}_foo}}"_transforms_to_"#{some_#{thing}_foo}"
4548
+ ------------------------------------------------------------------------------------
4549
+ -------------------------------------------------------------------
4550
+ InterpolatorTest: test_"{{something}}"_transforms_to_"#{something}"
4551
+ -------------------------------------------------------------------
4552
+ ---------------------------------------------------------------------
4553
+ InterpolatorTest: test_'a_lot_of_{{something_"{{good}}"}}'_transforms
4554
+ ---------------------------------------------------------------------
4555
+ ---------------------------------------------------------------------
4556
+ InterpolatorTest: test_nested_with_multiple_nested_expressions_parses
4557
+ ---------------------------------------------------------------------
4558
+ ----------------------------------------------------
4559
+ InterpolatorTest: test_nested_with_outer_text_parses
4560
+ ----------------------------------------------------
4561
+ -------------------------------------------------------
4562
+ InterpolatorTest: test_nested_without_outer_text_parses
4563
+ -------------------------------------------------------
4564
+ ---------------------------------------------------------------------
4565
+ InterpolatorTest: test_simple_expression_with_surrounding_text_parses
4566
+ ---------------------------------------------------------------------
4567
+ -------------------------------------------------
4568
+ InterpolatorTest: test_simplest_expression_parses
4569
+ -------------------------------------------------
4570
+ ---------------------------------------------------------------------
4571
+ ExpressTemplatesTest: test_ExpressTemplates.render_renders_a_template
4572
+ ---------------------------------------------------------------------
4573
+ -------------------------------------------
4574
+ ExpressTemplatesTest: test_we_have_a_module
4575
+ -------------------------------------------
4576
+ ---------------------------------------------------------------------------------------------
4577
+ IndenterTest: test_.for(:name)_returns_current_indent_without_newline_when_block_is_not_given
4578
+ ---------------------------------------------------------------------------------------------
4579
+ -----------------------------------------------------------------
4580
+ IndenterTest: test_.for(:name)_takes_a_block_receiving_whitespace
4581
+ -----------------------------------------------------------------
4582
+ ------------------------------------------------------------------
4583
+ IndenterTest: test_nesting_blocks_increases_whitespace_accordingly
4584
+ ------------------------------------------------------------------
4585
+ ------------------------------------------------------------
4586
+ TreeForTest: test_tree_for_accepts_block_with_custom_content
4587
+ ------------------------------------------------------------
4588
+ ---------------------------------------------------------------------------
4589
+ TreeForTest: test_tree_for_renders_correct_markup_with_node.name_as_default
4590
+ ---------------------------------------------------------------------------
4591
+ --------------------------------------------
4592
+ CompilerTest: test_.compile_returns_a_string
4593
+ --------------------------------------------
4594
+ --------------------------------------------------------------------------------------------------
4595
+ ExpressTemplates::ResourcefulTest: test_#resource_class_returns_resource_class_option_if_specified
4596
+ --------------------------------------------------------------------------------------------------
4597
+ -----------------------------------------------------------------------------------------
4598
+ ExpressTemplates::ResourcefulTest: test_infers_a_namespace_and_no_prefix_within_an_engine
4599
+ -----------------------------------------------------------------------------------------
4600
+ ---------------------------------------------------------------------------------------------------
4601
+ ExpressTemplates::ResourcefulTest: test_infers_namespace_and_path_prefix_within_an_engine_and_scope
4602
+ ---------------------------------------------------------------------------------------------------
4603
+ ------------------------------------------------------------------------------------------------
4604
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_infers_prefix_within_a_scope_within_an_app
4605
+ ------------------------------------------------------------------------------------------------
4606
+ -----------------------------------------------------------------------------
4607
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_no_prefix_within_an_app
4608
+ -----------------------------------------------------------------------------
4609
+ ----------------------------------------------------------------
4610
+ SelectTest: test_select_collection_works_using_collection_select
4611
+ ----------------------------------------------------------------
4612
+ ------------------------------------------
4613
+ SelectTest: test_select_comes_with_a_label
4614
+ ------------------------------------------
4615
+ --------------------------------------------------
4616
+ SelectTest: test_select_defaults_can_be_overridden
4617
+ --------------------------------------------------
4618
+ -------------------------------------------------------
4619
+ SelectTest: test_select_defaults_to_include_blank:_true
4620
+ -------------------------------------------------------
4621
+ ------------------------------------------------------------------------------------
4622
+ SelectTest: test_select_generates_correct_options_when_values_are_specified_as_array
4623
+ ------------------------------------------------------------------------------------
4624
+ ------------------------------------------------------------------------
4625
+ SelectTest: test_select_generates_options_from_data_when_options_omitted
4626
+ ------------------------------------------------------------------------
4627
+ --------------------------------------------------------------
4628
+ SelectTest: test_select_multiple:_true_if_passed_multiple_true
4629
+ --------------------------------------------------------------
4630
+ -----------------------------------------------------------------------------------------
4631
+ SelectTest: test_select_multiple_gets_options_from_associated_has_many_through_collection
4632
+ -----------------------------------------------------------------------------------------
4633
+ ---------------------------------------------------
4634
+ SelectTest: test_select_requires_a_parent_component
4635
+ ---------------------------------------------------
4636
+ ---------------------------------------------------------------------------
4637
+ SelectTest: test_select_uses_options_from_collect..._when_field_is_relation
4638
+ ---------------------------------------------------------------------------
4639
+ -------------------------------------------------------------------------
4640
+ SelectTest: test_selected_option_is_omitted_selection_is_taken_from_model
4641
+ -------------------------------------------------------------------------
4642
+ ------------------------------------------------
4643
+ ProcTest: test_#source_body_handles_funky_bodies
4644
+ ------------------------------------------------
4645
+ ----------------------------------------------------------
4646
+ ProcTest: test_#source_body_raises_exception_for_arity_>_0
4647
+ ----------------------------------------------------------
4648
+ ------------------------------------------------------
4649
+ ProcTest: test_#source_body_returns_the_body_of_a_proc
4650
+ ------------------------------------------------------
4651
+ ----------------------------------------------
4652
+ ProcTest: test_#source_returns_a_proc's_source
4653
+ ----------------------------------------------
4654
+ ---------------------------------------------------------------
4655
+ ProcTest: test_#source_work_with_a_stabby_lambda_spanning_lines
4656
+ ---------------------------------------------------------------
4657
+ ------------------------------------------------------------
4658
+ ProcTest: test_#source_works_with_a_block_containing_a_block
4659
+ ------------------------------------------------------------
4660
+ --------------------------------------------
4661
+ ProcTest: test_#source_works_with_a_do_block
4662
+ --------------------------------------------
4663
+ -----------------------------------------------------
4664
+ ProcTest: test_#source_works_with_a_single_line_block
4665
+ -----------------------------------------------------
4666
+ -------------------------------------------------
4667
+ ProcTest: test_#source_works_with_a_stabby_lambda
4668
+ -------------------------------------------------
4669
+ ----------------------------------------------------------------------------------------
4670
+ ProcTest: test_.from_source_stores_source_of_a_dynamicly_built_proc_for_later_inspection
4671
+ ----------------------------------------------------------------------------------------
4672
+ -----------------------------------------------------------------------------------------
4673
+ ProcTest: test_.source_body_captures_full_body_when_parens_around_parameters_not_provided
4674
+ -----------------------------------------------------------------------------------------
4675
+ ----------------------------------------------
4676
+ SubmitTest: test_submit_accepts_a_class_option
4677
+ ----------------------------------------------
4678
+ --------------------------------------------------------
4679
+ SubmitTest: test_submit_accepts_a_value_and_class_option
4680
+ --------------------------------------------------------
4681
+ ----------------------------------------------------
4682
+ SubmitTest: test_submit_takes_string_param_for_value
4683
+ ----------------------------------------------------
4684
+ --------------------------------------------------------------------------------------------------
4685
+ ExpressTemplates::ResourcefulTest: test_#resource_class_returns_resource_class_option_if_specified
4686
+ --------------------------------------------------------------------------------------------------
4687
+ -----------------------------------------------------------------------------------------
4688
+ ExpressTemplates::ResourcefulTest: test_infers_a_namespace_and_no_prefix_within_an_engine
4689
+ -----------------------------------------------------------------------------------------
4690
+ ---------------------------------------------------------------------------------------------------
4691
+ ExpressTemplates::ResourcefulTest: test_infers_namespace_and_path_prefix_within_an_engine_and_scope
4692
+ ---------------------------------------------------------------------------------------------------
4693
+ ------------------------------------------------------------------------------------------------
4694
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_infers_prefix_within_a_scope_within_an_app
4695
+ ------------------------------------------------------------------------------------------------
4696
+ -----------------------------------------------------------------------------
4697
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_no_prefix_within_an_app
4698
+ -----------------------------------------------------------------------------
4699
+ ---------------------------------------------------------------
4700
+ ExpressFormTest: test_express_form_contents_are_inside_the_form
4701
+ ---------------------------------------------------------------
4702
+ ---------------------------------------------------------
4703
+ ExpressFormTest: test_express_form_default_method_is_POST
4704
+ ---------------------------------------------------------
4705
+ -----------------------------------------------------
4706
+ ExpressFormTest: test_simplest_form_contains_form_tag
4707
+ -----------------------------------------------------
4708
+ ---------------------------------------------------------------
4709
+ ExpressFormTest: test_simplest_form_contains_rails_form_helpers
4710
+ ---------------------------------------------------------------
4711
+ ---------------------------------------------------
4712
+ ExpressFormTest: test_simplest_form_contains_submit
4713
+ ---------------------------------------------------
4714
+ -------------------------------------------
4715
+ ExpressFormTest: test_simplest_form_renders
4716
+ -------------------------------------------
4717
+ -------------------------------------------------------------------
4718
+ ExpressFormTest: test_simplest_form_uses_form_action_for_the_action
4719
+ -------------------------------------------------------------------
4720
+ -----------------------------------------------------------
4721
+ ExpressFormTest: test_simplest_form_will_have_the_proper_id
4722
+ -----------------------------------------------------------
4723
+ ------------------------------------------------------------------------------------
4724
+ StringTest: test_String#inspect_works_normally_when_#to_view_code_hasn't_been_called
4725
+ ------------------------------------------------------------------------------------
4726
+ --------------------------------------------------------------------------------
4727
+ StringTest: test_String#to_view_code_causes_subsequent_#inspect_to_remove_quotes
4728
+ --------------------------------------------------------------------------------
4729
+ -------------------------------------------------------
4730
+ StringTest: test_String#to_view_code_returns_the_string
4731
+ -------------------------------------------------------
4732
+ ---------------------------------------------------------------------
4733
+ ExpressTemplatesTest: test_ExpressTemplates.render_renders_a_template
4734
+ ---------------------------------------------------------------------
4735
+ -------------------------------------------
4736
+ ExpressTemplatesTest: test_we_have_a_module
4737
+ -------------------------------------------
4738
+ -----------------------------------------------------------------
4739
+ BaseTest: test_.contains_places_fragment_inside_the_enclosing_tag
4740
+ -----------------------------------------------------------------
4741
+ ---------------------------------------------------------
4742
+ BaseTest: test_.has_attributes_creates_default_attributes
4743
+ ---------------------------------------------------------
4744
+ -----------------------------------------------------
4745
+ BaseTest: test_.tag_name_determines_the_enclosing_tag
4746
+ -----------------------------------------------------
4747
+ --------------------------------------------------
4748
+ BaseTest: test_before_build_hook_runs_before_build
4749
+ --------------------------------------------------
4750
+ --------------------------------------------------------------
4751
+ BaseTest: test_class_name_is_dasherized_instead_of_underscored
4752
+ --------------------------------------------------------------
4753
+ -----------------------------------------------------------
4754
+ BaseTest: test_class_option_adds_a_class,_does_not_override
4755
+ -----------------------------------------------------------
4756
+ ----------------------------------------------------
4757
+ BaseTest: test_options_are_passed_to_html_attributes
4758
+ ----------------------------------------------------
4759
+ -----------------------------------------------------------------------------
4760
+ ConfigurableTest: test_.has_argument_adds_a_positional_configuration_argument
4761
+ -----------------------------------------------------------------------------
4762
+ ----------------------------------------------------------------------------------------
4763
+ ConfigurableTest: test_.has_argument_appends_supported_arguments_in_order_of_inheritence
4764
+ ----------------------------------------------------------------------------------------
4765
+ -------------------------------------------------------------------------------
4766
+ ConfigurableTest: test_.has_argument_as:_allows_overwrite_of_inherited_argument
4767
+ -------------------------------------------------------------------------------
4768
+ -----------------------------------------------------------------------------------------------------
4769
+ ConfigurableTest: test_.has_argument_makes_builder_arguments_accessible_by_name_according_to_position
4770
+ -----------------------------------------------------------------------------------------------------
4771
+ ---------------------------------------------------
4772
+ ConfigurableTest: test_default_values_are_supported
4773
+ ---------------------------------------------------
4774
+ ----------------------------------------------------------------------
4775
+ ConfigurableTest: test_default_values_for_attributes_can_be_overridden
4776
+ ----------------------------------------------------------------------
4777
+ ------------------------------------------------------------------------
4778
+ ConfigurableTest: test_does_not_pass_declared_options_as_html_attributes
4779
+ ------------------------------------------------------------------------
4780
+ -----------------------------------------------------------
4781
+ ConfigurableTest: test_has_no_id_attribute_if_not_specified
4782
+ -----------------------------------------------------------
4783
+ --------------------------------------------
4784
+ ConfigurableTest: test_options_are_inherited
4785
+ --------------------------------------------
4786
+ -------------------------------------------------------
4787
+ ConfigurableTest: test_renders_first_argument_as_dom_id
4788
+ -------------------------------------------------------
4789
+ ----------------------------------------------------
4790
+ ConfigurableTest: test_required_options_are_required
4791
+ ----------------------------------------------------
4792
+ --------------------------------------------------
4793
+ ConfigurableTest: test_supports_option_declaration
4794
+ --------------------------------------------------
4795
+ ---------------------------------------------------------------
4796
+ ConfigurableTest: test_unrecognized_options_raises_an_exception
4797
+ ---------------------------------------------------------------
4798
+ ---------------------------------------------------------------------------------------------
4799
+ IndenterTest: test_.for(:name)_returns_current_indent_without_newline_when_block_is_not_given
4800
+ ---------------------------------------------------------------------------------------------
4801
+ -----------------------------------------------------------------
4802
+ IndenterTest: test_.for(:name)_takes_a_block_receiving_whitespace
4803
+ -----------------------------------------------------------------
4804
+ ------------------------------------------------------------------
4805
+ IndenterTest: test_nesting_blocks_increases_whitespace_accordingly
4806
+ ------------------------------------------------------------------
4807
+ -------------------------------------------------------------
4808
+ CheckboxTest: test_checkbox_places_the_label_before_the_input
4809
+ -------------------------------------------------------------
4810
+ -------------------------------------------------------
4811
+ CheckboxTest: test_checkbox_respects_label_after:_true_
4812
+ -------------------------------------------------------
4813
+ ------------------------------------------------------------
4814
+ TreeForTest: test_tree_for_accepts_block_with_custom_content
4815
+ ------------------------------------------------------------
4816
+ ---------------------------------------------------------------------------
4817
+ TreeForTest: test_tree_for_renders_correct_markup_with_node.name_as_default
4818
+ ---------------------------------------------------------------------------
4819
+ -----------------------------------------
4820
+ HelloControllerTest: test_should_get_show
4821
+ -----------------------------------------
4822
+ Processing by HelloController#show as HTML
4823
+ Rendered hello/show.html.et within layouts/application (0.7ms)
4824
+ Completed 200 OK in 116ms (Views: 116.3ms)
4825
+ -----------------------------------------------------------
4826
+ RadioTest: test_radio_has_correct_label_field_name_and_text
4827
+ -----------------------------------------------------------
4828
+ ------------------------------------------------------------------
4829
+ RadioTest: test_radio_options_from_collection_when_options_omitted
4830
+ ------------------------------------------------------------------
4831
+ ----------------------------------------------------------
4832
+ RadioTest: test_radio_options_may_be_specified_with_a_hash
4833
+ ----------------------------------------------------------
4834
+ --------------------------------------------------------
4835
+ RadioTest: test_radio_options_present_with_class_'radio'
4836
+ --------------------------------------------------------
4837
+ -------------------------------------------------
4838
+ RadioTest: test_radio_requires_a_parent_component
4839
+ -------------------------------------------------
4840
+ ------------------------------------------------------------
4841
+ RadioTest: test_radio_throws_error_if_given_improper_options
4842
+ ------------------------------------------------------------
4843
+ -------------------------------------
4844
+ BasicFieldsTest: test_all_fields_work
4845
+ -------------------------------------
4846
+ ---------------------------------------------------------------------------------
4847
+ BasicFieldsTest: test_hidden_field_passes_additional_html_options_to_rails_helper
4848
+ ---------------------------------------------------------------------------------
4849
+ ---------------------------------------------------------
4850
+ BasicFieldsTest: test_hidden_uses_rails_hidden_tag_helper
4851
+ ---------------------------------------------------------
4852
+ ---------------------------------------------------------
4853
+ BasicFieldsTest: test_passing_html_options_to_fields_work
4854
+ ---------------------------------------------------------
4855
+ -----------------------------------------------------------------------------
4856
+ BasicFieldsTest: test_textarea_passes_additional_html_options_to_rails_helper
4857
+ -----------------------------------------------------------------------------
4858
+ ----------------------------------------------------------
4859
+ BasicFieldsTest: test_textarea_uses_rails_text_area_helper
4860
+ ----------------------------------------------------------
4861
+ ------------------------------------------------------------------------------------
4862
+ InterpolatorTest: test_"{{some_{{thing}}_foo}}"_transforms_to_"#{some_#{thing}_foo}"
4863
+ ------------------------------------------------------------------------------------
4864
+ -------------------------------------------------------------------
4865
+ InterpolatorTest: test_"{{something}}"_transforms_to_"#{something}"
4866
+ -------------------------------------------------------------------
4867
+ ---------------------------------------------------------------------
4868
+ InterpolatorTest: test_'a_lot_of_{{something_"{{good}}"}}'_transforms
4869
+ ---------------------------------------------------------------------
4870
+ ---------------------------------------------------------------------
4871
+ InterpolatorTest: test_nested_with_multiple_nested_expressions_parses
4872
+ ---------------------------------------------------------------------
4873
+ ----------------------------------------------------
4874
+ InterpolatorTest: test_nested_with_outer_text_parses
4875
+ ----------------------------------------------------
4876
+ -------------------------------------------------------
4877
+ InterpolatorTest: test_nested_without_outer_text_parses
4878
+ -------------------------------------------------------
4879
+ ---------------------------------------------------------------------
4880
+ InterpolatorTest: test_simple_expression_with_surrounding_text_parses
4881
+ ---------------------------------------------------------------------
4882
+ -------------------------------------------------
4883
+ InterpolatorTest: test_simplest_expression_parses
4884
+ -------------------------------------------------
4885
+ --------------------------------------------
4886
+ CompilerTest: test_.compile_returns_a_string
4887
+ --------------------------------------------
4888
+ --------------------------------------------------------------
4889
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
4890
+ --------------------------------------------------------------
4891
+ ------------------------------------------------------------------------
4892
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
4893
+ ------------------------------------------------------------------------
4894
+ ----------------------------------------------------------
4895
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
4896
+ ----------------------------------------------------------
4897
+ -----------------------------
4898
+ HandlerTest: test_locals_work
4899
+ -----------------------------
4900
+ ------------------------------------------------------------
4901
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
4902
+ ------------------------------------------------------------
4903
+ ----------------------------------
4904
+ HandlerTest: test_other_attributes
4905
+ ----------------------------------
4906
+ -------------------------------------------
4907
+ HandlerTest: test_our_handler_is_registered
4908
+ -------------------------------------------
4909
+ ---------------------------------------
4910
+ HandlerTest: test_string_in_block_works
4911
+ ---------------------------------------
4912
+ ----------------------------------------------------------------
4913
+ SelectTest: test_select_collection_works_using_collection_select
4914
+ ----------------------------------------------------------------
4915
+ ------------------------------------------
4916
+ SelectTest: test_select_comes_with_a_label
4917
+ ------------------------------------------
4918
+ --------------------------------------------------
4919
+ SelectTest: test_select_defaults_can_be_overridden
4920
+ --------------------------------------------------
4921
+ -------------------------------------------------------
4922
+ SelectTest: test_select_defaults_to_include_blank:_true
4923
+ -------------------------------------------------------
4924
+ ------------------------------------------------------------------------------------
4925
+ SelectTest: test_select_generates_correct_options_when_values_are_specified_as_array
4926
+ ------------------------------------------------------------------------------------
4927
+ ------------------------------------------------------------------------
4928
+ SelectTest: test_select_generates_options_from_data_when_options_omitted
4929
+ ------------------------------------------------------------------------
4930
+ --------------------------------------------------------------
4931
+ SelectTest: test_select_multiple:_true_if_passed_multiple_true
4932
+ --------------------------------------------------------------
4933
+ -----------------------------------------------------------------------------------------
4934
+ SelectTest: test_select_multiple_gets_options_from_associated_has_many_through_collection
4935
+ -----------------------------------------------------------------------------------------
4936
+ ---------------------------------------------------
4937
+ SelectTest: test_select_requires_a_parent_component
4938
+ ---------------------------------------------------
4939
+ ---------------------------------------------------------------------------
4940
+ SelectTest: test_select_uses_options_from_collect..._when_field_is_relation
4941
+ ---------------------------------------------------------------------------
4942
+ -------------------------------------------------------------------------
4943
+ SelectTest: test_selected_option_is_omitted_selection_is_taken_from_model
4944
+ -------------------------------------------------------------------------
4945
+ ---------------------------------------------------------------
4946
+ ExpressFormTest: test_express_form_contents_are_inside_the_form
4947
+ ---------------------------------------------------------------
4948
+ ---------------------------------------------------------
4949
+ ExpressFormTest: test_express_form_default_method_is_POST
4950
+ ---------------------------------------------------------
4951
+ -----------------------------------------------------
4952
+ ExpressFormTest: test_simplest_form_contains_form_tag
4953
+ -----------------------------------------------------
4954
+ ---------------------------------------------------------------
4955
+ ExpressFormTest: test_simplest_form_contains_rails_form_helpers
4956
+ ---------------------------------------------------------------
4957
+ ---------------------------------------------------
4958
+ ExpressFormTest: test_simplest_form_contains_submit
4959
+ ---------------------------------------------------
4960
+ -------------------------------------------
4961
+ ExpressFormTest: test_simplest_form_renders
4962
+ -------------------------------------------
4963
+ -------------------------------------------------------------------
4964
+ ExpressFormTest: test_simplest_form_uses_form_action_for_the_action
4965
+ -------------------------------------------------------------------
4966
+ -----------------------------------------------------------
4967
+ ExpressFormTest: test_simplest_form_will_have_the_proper_id
4968
+ -----------------------------------------------------------
4969
+ ------------------------------------------------------------------------------------
4970
+ StringTest: test_String#inspect_works_normally_when_#to_view_code_hasn't_been_called
4971
+ ------------------------------------------------------------------------------------
4972
+ --------------------------------------------------------------------------------
4973
+ StringTest: test_String#to_view_code_causes_subsequent_#inspect_to_remove_quotes
4974
+ --------------------------------------------------------------------------------
4975
+ -------------------------------------------------------
4976
+ StringTest: test_String#to_view_code_returns_the_string
4977
+ -------------------------------------------------------
4978
+ ----------------------------------------------------------------
4979
+ SelectTest: test_select_collection_works_using_collection_select
4980
+ ----------------------------------------------------------------
4981
+ ------------------------------------------
4982
+ SelectTest: test_select_comes_with_a_label
4983
+ ------------------------------------------
4984
+ --------------------------------------------------
4985
+ SelectTest: test_select_defaults_can_be_overridden
4986
+ --------------------------------------------------
4987
+ -------------------------------------------------------
4988
+ SelectTest: test_select_defaults_to_include_blank:_true
4989
+ -------------------------------------------------------
4990
+ ------------------------------------------------------------------------------------
4991
+ SelectTest: test_select_generates_correct_options_when_values_are_specified_as_array
4992
+ ------------------------------------------------------------------------------------
4993
+ ------------------------------------------------------------------------
4994
+ SelectTest: test_select_generates_options_from_data_when_options_omitted
4995
+ ------------------------------------------------------------------------
4996
+ --------------------------------------------------------------
4997
+ SelectTest: test_select_multiple:_true_if_passed_multiple_true
4998
+ --------------------------------------------------------------
4999
+ -----------------------------------------------------------------------------------------
5000
+ SelectTest: test_select_multiple_gets_options_from_associated_has_many_through_collection
5001
+ -----------------------------------------------------------------------------------------
5002
+ ---------------------------------------------------
5003
+ SelectTest: test_select_requires_a_parent_component
5004
+ ---------------------------------------------------
5005
+ ---------------------------------------------------------------------------
5006
+ SelectTest: test_select_uses_options_from_collect..._when_field_is_relation
5007
+ ---------------------------------------------------------------------------
5008
+ -------------------------------------------------------------------------
5009
+ SelectTest: test_selected_option_is_omitted_selection_is_taken_from_model
5010
+ -------------------------------------------------------------------------
5011
+ -----------------------------------------------------------------
5012
+ BaseTest: test_.contains_places_fragment_inside_the_enclosing_tag
5013
+ -----------------------------------------------------------------
5014
+ ---------------------------------------------------------
5015
+ BaseTest: test_.has_attributes_creates_default_attributes
5016
+ ---------------------------------------------------------
5017
+ -----------------------------------------------------
5018
+ BaseTest: test_.tag_name_determines_the_enclosing_tag
5019
+ -----------------------------------------------------
5020
+ --------------------------------------------------
5021
+ BaseTest: test_before_build_hook_runs_before_build
5022
+ --------------------------------------------------
5023
+ --------------------------------------------------------------
5024
+ BaseTest: test_class_name_is_dasherized_instead_of_underscored
5025
+ --------------------------------------------------------------
5026
+ -----------------------------------------------------------
5027
+ BaseTest: test_class_option_adds_a_class,_does_not_override
5028
+ -----------------------------------------------------------
5029
+ ----------------------------------------------------
5030
+ BaseTest: test_options_are_passed_to_html_attributes
5031
+ ----------------------------------------------------
5032
+ -------------------------------------
5033
+ BasicFieldsTest: test_all_fields_work
5034
+ -------------------------------------
5035
+ ---------------------------------------------------------------------------------
5036
+ BasicFieldsTest: test_hidden_field_passes_additional_html_options_to_rails_helper
5037
+ ---------------------------------------------------------------------------------
5038
+ ---------------------------------------------------------
5039
+ BasicFieldsTest: test_hidden_uses_rails_hidden_tag_helper
5040
+ ---------------------------------------------------------
5041
+ ---------------------------------------------------------
5042
+ BasicFieldsTest: test_passing_html_options_to_fields_work
5043
+ ---------------------------------------------------------
5044
+ -----------------------------------------------------------------------------
5045
+ BasicFieldsTest: test_textarea_passes_additional_html_options_to_rails_helper
5046
+ -----------------------------------------------------------------------------
5047
+ ----------------------------------------------------------
5048
+ BasicFieldsTest: test_textarea_uses_rails_text_area_helper
5049
+ ----------------------------------------------------------
5050
+ ------------------------------------------------------------
5051
+ TreeForTest: test_tree_for_accepts_block_with_custom_content
5052
+ ------------------------------------------------------------
5053
+ ---------------------------------------------------------------------------
5054
+ TreeForTest: test_tree_for_renders_correct_markup_with_node.name_as_default
5055
+ ---------------------------------------------------------------------------
5056
+ ------------------------------------------------------------------------------------
5057
+ InterpolatorTest: test_"{{some_{{thing}}_foo}}"_transforms_to_"#{some_#{thing}_foo}"
5058
+ ------------------------------------------------------------------------------------
5059
+ -------------------------------------------------------------------
5060
+ InterpolatorTest: test_"{{something}}"_transforms_to_"#{something}"
5061
+ -------------------------------------------------------------------
5062
+ ---------------------------------------------------------------------
5063
+ InterpolatorTest: test_'a_lot_of_{{something_"{{good}}"}}'_transforms
5064
+ ---------------------------------------------------------------------
5065
+ ---------------------------------------------------------------------
5066
+ InterpolatorTest: test_nested_with_multiple_nested_expressions_parses
5067
+ ---------------------------------------------------------------------
5068
+ ----------------------------------------------------
5069
+ InterpolatorTest: test_nested_with_outer_text_parses
5070
+ ----------------------------------------------------
5071
+ -------------------------------------------------------
5072
+ InterpolatorTest: test_nested_without_outer_text_parses
5073
+ -------------------------------------------------------
5074
+ ---------------------------------------------------------------------
5075
+ InterpolatorTest: test_simple_expression_with_surrounding_text_parses
5076
+ ---------------------------------------------------------------------
5077
+ -------------------------------------------------
5078
+ InterpolatorTest: test_simplest_expression_parses
5079
+ -------------------------------------------------
5080
+ -------------------------------------------------------------
5081
+ CheckboxTest: test_checkbox_places_the_label_before_the_input
5082
+ -------------------------------------------------------------
5083
+ -------------------------------------------------------
5084
+ CheckboxTest: test_checkbox_respects_label_after:_true_
5085
+ -------------------------------------------------------
5086
+ ---------------------------------------------------------------------------------------------
5087
+ IndenterTest: test_.for(:name)_returns_current_indent_without_newline_when_block_is_not_given
5088
+ ---------------------------------------------------------------------------------------------
5089
+ -----------------------------------------------------------------
5090
+ IndenterTest: test_.for(:name)_takes_a_block_receiving_whitespace
5091
+ -----------------------------------------------------------------
5092
+ ------------------------------------------------------------------
5093
+ IndenterTest: test_nesting_blocks_increases_whitespace_accordingly
5094
+ ------------------------------------------------------------------
5095
+ -----------------------------------------
5096
+ HelloControllerTest: test_should_get_show
5097
+ -----------------------------------------
5098
+ Processing by HelloController#show as HTML
5099
+ Rendered hello/show.html.et within layouts/application (0.5ms)
5100
+ Completed 200 OK in 119ms (Views: 118.9ms)
5101
+ ---------------------------------------------------------------------
5102
+ ExpressTemplatesTest: test_ExpressTemplates.render_renders_a_template
5103
+ ---------------------------------------------------------------------
5104
+ -------------------------------------------
5105
+ ExpressTemplatesTest: test_we_have_a_module
5106
+ -------------------------------------------
5107
+ -----------------------------------------------------------
5108
+ RadioTest: test_radio_has_correct_label_field_name_and_text
5109
+ -----------------------------------------------------------
5110
+ ------------------------------------------------------------------
5111
+ RadioTest: test_radio_options_from_collection_when_options_omitted
5112
+ ------------------------------------------------------------------
5113
+ ----------------------------------------------------------
5114
+ RadioTest: test_radio_options_may_be_specified_with_a_hash
5115
+ ----------------------------------------------------------
5116
+ --------------------------------------------------------
5117
+ RadioTest: test_radio_options_present_with_class_'radio'
5118
+ --------------------------------------------------------
5119
+ -------------------------------------------------
5120
+ RadioTest: test_radio_requires_a_parent_component
5121
+ -------------------------------------------------
5122
+ ------------------------------------------------------------
5123
+ RadioTest: test_radio_throws_error_if_given_improper_options
5124
+ ------------------------------------------------------------
5125
+ -----------------------------------------------------------------------------
5126
+ ConfigurableTest: test_.has_argument_adds_a_positional_configuration_argument
5127
+ -----------------------------------------------------------------------------
5128
+ ----------------------------------------------------------------------------------------
5129
+ ConfigurableTest: test_.has_argument_appends_supported_arguments_in_order_of_inheritence
5130
+ ----------------------------------------------------------------------------------------
5131
+ -------------------------------------------------------------------------------
5132
+ ConfigurableTest: test_.has_argument_as:_allows_overwrite_of_inherited_argument
5133
+ -------------------------------------------------------------------------------
5134
+ -----------------------------------------------------------------------------------------------------
5135
+ ConfigurableTest: test_.has_argument_makes_builder_arguments_accessible_by_name_according_to_position
5136
+ -----------------------------------------------------------------------------------------------------
5137
+ ---------------------------------------------------
5138
+ ConfigurableTest: test_default_values_are_supported
5139
+ ---------------------------------------------------
5140
+ ----------------------------------------------------------------------
5141
+ ConfigurableTest: test_default_values_for_attributes_can_be_overridden
5142
+ ----------------------------------------------------------------------
5143
+ ------------------------------------------------------------------------
5144
+ ConfigurableTest: test_does_not_pass_declared_options_as_html_attributes
5145
+ ------------------------------------------------------------------------
5146
+ -----------------------------------------------------------
5147
+ ConfigurableTest: test_has_no_id_attribute_if_not_specified
5148
+ -----------------------------------------------------------
5149
+ --------------------------------------------
5150
+ ConfigurableTest: test_options_are_inherited
5151
+ --------------------------------------------
5152
+ -------------------------------------------------------
5153
+ ConfigurableTest: test_renders_first_argument_as_dom_id
5154
+ -------------------------------------------------------
5155
+ ----------------------------------------------------
5156
+ ConfigurableTest: test_required_options_are_required
5157
+ ----------------------------------------------------
5158
+ --------------------------------------------------
5159
+ ConfigurableTest: test_supports_option_declaration
5160
+ --------------------------------------------------
5161
+ ---------------------------------------------------------------
5162
+ ConfigurableTest: test_unrecognized_options_raises_an_exception
5163
+ ---------------------------------------------------------------
5164
+ --------------------------------------------
5165
+ CompilerTest: test_.compile_returns_a_string
5166
+ --------------------------------------------
5167
+ --------------------------------------------------------------
5168
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
5169
+ --------------------------------------------------------------
5170
+ ------------------------------------------------------------------------
5171
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
5172
+ ------------------------------------------------------------------------
5173
+ ----------------------------------------------------------
5174
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5175
+ ----------------------------------------------------------
5176
+ -----------------------------
5177
+ HandlerTest: test_locals_work
5178
+ -----------------------------
5179
+ ------------------------------------------------------------
5180
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5181
+ ------------------------------------------------------------
5182
+ ----------------------------------
5183
+ HandlerTest: test_other_attributes
5184
+ ----------------------------------
5185
+ -------------------------------------------
5186
+ HandlerTest: test_our_handler_is_registered
5187
+ -------------------------------------------
5188
+ ---------------------------------------
5189
+ HandlerTest: test_string_in_block_works
5190
+ ---------------------------------------
5191
+ --------------------------------------------------------------------------------------------------
5192
+ ExpressTemplates::ResourcefulTest: test_#resource_class_returns_resource_class_option_if_specified
5193
+ --------------------------------------------------------------------------------------------------
5194
+ -----------------------------------------------------------------------------------------
5195
+ ExpressTemplates::ResourcefulTest: test_infers_a_namespace_and_no_prefix_within_an_engine
5196
+ -----------------------------------------------------------------------------------------
5197
+ ---------------------------------------------------------------------------------------------------
5198
+ ExpressTemplates::ResourcefulTest: test_infers_namespace_and_path_prefix_within_an_engine_and_scope
5199
+ ---------------------------------------------------------------------------------------------------
5200
+ ------------------------------------------------------------------------------------------------
5201
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_infers_prefix_within_a_scope_within_an_app
5202
+ ------------------------------------------------------------------------------------------------
5203
+ -----------------------------------------------------------------------------
5204
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_no_prefix_within_an_app
5205
+ -----------------------------------------------------------------------------
5206
+ ----------------------------------------------
5207
+ SubmitTest: test_submit_accepts_a_class_option
5208
+ ----------------------------------------------
5209
+ --------------------------------------------------------
5210
+ SubmitTest: test_submit_accepts_a_value_and_class_option
5211
+ --------------------------------------------------------
5212
+ ----------------------------------------------------
5213
+ SubmitTest: test_submit_takes_string_param_for_value
5214
+ ----------------------------------------------------
5215
+ ------------------------------------------------
5216
+ ProcTest: test_#source_body_handles_funky_bodies
5217
+ ------------------------------------------------
5218
+ ----------------------------------------------------------
5219
+ ProcTest: test_#source_body_raises_exception_for_arity_>_0
5220
+ ----------------------------------------------------------
5221
+ ------------------------------------------------------
5222
+ ProcTest: test_#source_body_returns_the_body_of_a_proc
5223
+ ------------------------------------------------------
5224
+ ----------------------------------------------
5225
+ ProcTest: test_#source_returns_a_proc's_source
5226
+ ----------------------------------------------
5227
+ ---------------------------------------------------------------
5228
+ ProcTest: test_#source_work_with_a_stabby_lambda_spanning_lines
5229
+ ---------------------------------------------------------------
5230
+ ------------------------------------------------------------
5231
+ ProcTest: test_#source_works_with_a_block_containing_a_block
5232
+ ------------------------------------------------------------
5233
+ --------------------------------------------
5234
+ ProcTest: test_#source_works_with_a_do_block
5235
+ --------------------------------------------
5236
+ -----------------------------------------------------
5237
+ ProcTest: test_#source_works_with_a_single_line_block
5238
+ -----------------------------------------------------
5239
+ -------------------------------------------------
5240
+ ProcTest: test_#source_works_with_a_stabby_lambda
5241
+ -------------------------------------------------
5242
+ ----------------------------------------------------------------------------------------
5243
+ ProcTest: test_.from_source_stores_source_of_a_dynamicly_built_proc_for_later_inspection
5244
+ ----------------------------------------------------------------------------------------
5245
+ -----------------------------------------------------------------------------------------
5246
+ ProcTest: test_.source_body_captures_full_body_when_parens_around_parameters_not_provided
5247
+ -----------------------------------------------------------------------------------------
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: express_admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steven Talcott Smith
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.9.0
33
+ version: '0.9'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.9.0
40
+ version: '0.9'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: jquery-rails
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -501,6 +501,7 @@ files:
501
501
  - vendor/gems/express_templates/express_templates-0.7.1.gem
502
502
  - vendor/gems/express_templates/express_templates-0.8.0.gem
503
503
  - vendor/gems/express_templates/express_templates-0.9.0.gem
504
+ - vendor/gems/express_templates/express_templates-0.9.1.gem
504
505
  - vendor/gems/express_templates/express_templates.gemspec
505
506
  - vendor/gems/express_templates/lib/arbre/patches.rb
506
507
  - vendor/gems/express_templates/lib/core_extensions/proc.rb