express_admin 1.4.5 → 1.4.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. checksums.yaml +4 -4
  2. data/app/components/express_admin/smart_form.rb +4 -3
  3. data/app/components/express_admin/smart_table.rb +0 -4
  4. data/app/controllers/express_admin/standard_controller.rb +13 -0
  5. data/lib/express_admin/standard_actions.rb +155 -0
  6. data/lib/express_admin/version.rb +1 -1
  7. data/lib/generators/express_admin/install/install_generator.rb +0 -5
  8. data/lib/generators/express_admin/scaffold/templates/controller/controller.rb +1 -8
  9. data/test/controllers/standard_controller_test.rb +97 -0
  10. data/test/dummy/db/test.sqlite3 +0 -0
  11. data/test/dummy/test/components/smart_form_test.rb +1 -1
  12. data/test/lib/generators/express_admin/install_generator_test.rb +0 -7
  13. data/test/lib/generators/express_admin/scaffold_generator_test.rb +1 -4
  14. data/test/test_helper.rb +5 -0
  15. data/vendor/gems/express_templates/express_templates-0.9.5.gem +0 -0
  16. data/vendor/gems/express_templates/lib/arbre/patches.rb +14 -0
  17. data/vendor/gems/express_templates/lib/express_templates/components/capabilities/resourceful.rb +46 -10
  18. data/vendor/gems/express_templates/lib/express_templates/components/configurable.rb +2 -2
  19. data/vendor/gems/express_templates/lib/express_templates/components/forms/express_form.rb +1 -1
  20. data/vendor/gems/express_templates/lib/express_templates/components/forms/option_support.rb +10 -6
  21. data/vendor/gems/express_templates/lib/express_templates/version.rb +1 -1
  22. data/vendor/gems/express_templates/test/components/configurable_test.rb +13 -0
  23. data/vendor/gems/express_templates/test/components/forms/express_form_test.rb +0 -4
  24. data/vendor/gems/express_templates/test/dummy/log/test.log +963 -0
  25. metadata +9 -5
  26. data/lib/generators/express_admin/install/templates/controllers/admin_controller.rb.erb +0 -32
@@ -11578,3 +11578,966 @@ BaseTest: test_class_option_adds_a_class,_does_not_override
11578
11578
  ----------------------------------------------------
11579
11579
  BaseTest: test_options_are_passed_to_html_attributes
11580
11580
  ----------------------------------------------------
11581
+ ----------------------------------------------------------------
11582
+ SelectTest: test_select_collection_works_using_collection_select
11583
+ ----------------------------------------------------------------
11584
+ ------------------------------------------
11585
+ SelectTest: test_select_comes_with_a_label
11586
+ ------------------------------------------
11587
+ --------------------------------------------------
11588
+ SelectTest: test_select_defaults_can_be_overridden
11589
+ --------------------------------------------------
11590
+ -------------------------------------------------------
11591
+ SelectTest: test_select_defaults_to_include_blank:_true
11592
+ -------------------------------------------------------
11593
+ ------------------------------------------------------------------------------------
11594
+ SelectTest: test_select_generates_correct_options_when_values_are_specified_as_array
11595
+ ------------------------------------------------------------------------------------
11596
+ ------------------------------------------------------------------------
11597
+ SelectTest: test_select_generates_options_from_data_when_options_omitted
11598
+ ------------------------------------------------------------------------
11599
+ --------------------------------------------------------------
11600
+ SelectTest: test_select_multiple:_true_if_passed_multiple_true
11601
+ --------------------------------------------------------------
11602
+ -----------------------------------------------------------------------------------------
11603
+ SelectTest: test_select_multiple_gets_options_from_associated_has_many_through_collection
11604
+ -----------------------------------------------------------------------------------------
11605
+ ---------------------------------------------------
11606
+ SelectTest: test_select_requires_a_parent_component
11607
+ ---------------------------------------------------
11608
+ ---------------------------------------------------------------------------
11609
+ SelectTest: test_select_uses_options_from_collect..._when_field_is_relation
11610
+ ---------------------------------------------------------------------------
11611
+ -------------------------------------------------------------------------
11612
+ SelectTest: test_selected_option_is_omitted_selection_is_taken_from_model
11613
+ -------------------------------------------------------------------------
11614
+ ---------------------------------------------------------------------------------------
11615
+ BasicFieldsTest: test_adds_error_class_if_there_are_errors_on_a_field_with_no_class_set
11616
+ ---------------------------------------------------------------------------------------
11617
+ ----------------------------------------------------------------------------------------------
11618
+ BasicFieldsTest: test_adds_error_class_if_there_are_errors_on_a_field_with_no_input_attributes
11619
+ ----------------------------------------------------------------------------------------------
11620
+ --------------------------------------------------------------------------------------------
11621
+ BasicFieldsTest: test_adds_error_to_class_if_there_are_errors_on_a_field_with_existing_class
11622
+ --------------------------------------------------------------------------------------------
11623
+ -------------------------------------
11624
+ BasicFieldsTest: test_all_fields_work
11625
+ -------------------------------------
11626
+ ---------------------------------------------------------------------------------
11627
+ BasicFieldsTest: test_hidden_field_passes_additional_html_options_to_rails_helper
11628
+ ---------------------------------------------------------------------------------
11629
+ ---------------------------------------------------------
11630
+ BasicFieldsTest: test_hidden_uses_rails_hidden_tag_helper
11631
+ ---------------------------------------------------------
11632
+ ---------------------------------------------------------
11633
+ BasicFieldsTest: test_passing_html_options_to_fields_work
11634
+ ---------------------------------------------------------
11635
+ -----------------------------------------------------------------------------
11636
+ BasicFieldsTest: test_textarea_passes_additional_html_options_to_rails_helper
11637
+ -----------------------------------------------------------------------------
11638
+ ----------------------------------------------------------
11639
+ BasicFieldsTest: test_textarea_uses_rails_text_area_helper
11640
+ ----------------------------------------------------------
11641
+ -----------------------------------------------------------------------------------------
11642
+ ProcTest: test_#source_body_captures_full_body_when_parens_around_parameters_not_provided
11643
+ -----------------------------------------------------------------------------------------
11644
+ ------------------------------------------------
11645
+ ProcTest: test_#source_body_handles_funky_bodies
11646
+ ------------------------------------------------
11647
+ ----------------------------------------------------------
11648
+ ProcTest: test_#source_body_raises_exception_for_arity_>_0
11649
+ ----------------------------------------------------------
11650
+ ------------------------------------------------------
11651
+ ProcTest: test_#source_body_returns_the_body_of_a_proc
11652
+ ------------------------------------------------------
11653
+ ----------------------------------------------
11654
+ ProcTest: test_#source_returns_a_proc's_source
11655
+ ----------------------------------------------
11656
+ ---------------------------------------------------------------
11657
+ ProcTest: test_#source_work_with_a_stabby_lambda_spanning_lines
11658
+ ---------------------------------------------------------------
11659
+ -----------------------------------------------------------------
11660
+ ProcTest: test_#source_works_when_a_proc_is_inside_a_hash_literal
11661
+ -----------------------------------------------------------------
11662
+ ------------------------------------------------------------
11663
+ ProcTest: test_#source_works_with_a_block_containing_a_block
11664
+ ------------------------------------------------------------
11665
+ --------------------------------------------
11666
+ ProcTest: test_#source_works_with_a_do_block
11667
+ --------------------------------------------
11668
+ -----------------------------------------------------
11669
+ ProcTest: test_#source_works_with_a_single_line_block
11670
+ -----------------------------------------------------
11671
+ -------------------------------------------------
11672
+ ProcTest: test_#source_works_with_a_stabby_lambda
11673
+ -------------------------------------------------
11674
+ ----------------------------------------------------------------------------------------
11675
+ ProcTest: test_.from_source_stores_source_of_a_dynamicly_built_proc_for_later_inspection
11676
+ ----------------------------------------------------------------------------------------
11677
+ ------------------------------------------------------------
11678
+ TreeForTest: test_tree_for_accepts_block_with_custom_content
11679
+ ------------------------------------------------------------
11680
+ ---------------------------------------------------------------------------
11681
+ TreeForTest: test_tree_for_renders_correct_markup_with_node.name_as_default
11682
+ ---------------------------------------------------------------------------
11683
+ ------------------------------------------------------------------------------------
11684
+ StringTest: test_String#inspect_works_normally_when_#to_view_code_hasn't_been_called
11685
+ ------------------------------------------------------------------------------------
11686
+ --------------------------------------------------------------------------------
11687
+ StringTest: test_String#to_view_code_causes_subsequent_#inspect_to_remove_quotes
11688
+ --------------------------------------------------------------------------------
11689
+ -------------------------------------------------------
11690
+ StringTest: test_String#to_view_code_returns_the_string
11691
+ -------------------------------------------------------
11692
+ -----------------------------------------------------------
11693
+ RadioTest: test_radio_has_correct_label_field_name_and_text
11694
+ -----------------------------------------------------------
11695
+ ------------------------------------------------------------------
11696
+ RadioTest: test_radio_options_from_collection_when_options_omitted
11697
+ ------------------------------------------------------------------
11698
+ ----------------------------------------------------------
11699
+ RadioTest: test_radio_options_may_be_specified_with_a_hash
11700
+ ----------------------------------------------------------
11701
+ --------------------------------------------------------
11702
+ RadioTest: test_radio_options_present_with_class_'radio'
11703
+ --------------------------------------------------------
11704
+ -------------------------------------------------
11705
+ RadioTest: test_radio_requires_a_parent_component
11706
+ -------------------------------------------------
11707
+ ------------------------------------------------------------
11708
+ RadioTest: test_radio_throws_error_if_given_improper_options
11709
+ ------------------------------------------------------------
11710
+ ---------------------------------------------------------------------------------------------
11711
+ IndenterTest: test_.for(:name)_returns_current_indent_without_newline_when_block_is_not_given
11712
+ ---------------------------------------------------------------------------------------------
11713
+ -----------------------------------------------------------------
11714
+ IndenterTest: test_.for(:name)_takes_a_block_receiving_whitespace
11715
+ -----------------------------------------------------------------
11716
+ ------------------------------------------------------------------
11717
+ IndenterTest: test_nesting_blocks_increases_whitespace_accordingly
11718
+ ------------------------------------------------------------------
11719
+ -----------------------------------------
11720
+ HelloControllerTest: test_should_get_show
11721
+ -----------------------------------------
11722
+ Processing by HelloController#show as HTML
11723
+ Rendered hello/show.html.et within layouts/application (0.7ms)
11724
+ Completed 200 OK in 128ms (Views: 128.0ms)
11725
+ ---------------------------------------------------------------------
11726
+ ExpressTemplatesTest: test_ExpressTemplates.render_renders_a_template
11727
+ ---------------------------------------------------------------------
11728
+ -------------------------------------------
11729
+ ExpressTemplatesTest: test_we_have_a_module
11730
+ -------------------------------------------
11731
+ ------------------------------------------------------------------------------------
11732
+ InterpolatorTest: test_"{{some_{{thing}}_foo}}"_transforms_to_"#{some_#{thing}_foo}"
11733
+ ------------------------------------------------------------------------------------
11734
+ -------------------------------------------------------------------
11735
+ InterpolatorTest: test_"{{something}}"_transforms_to_"#{something}"
11736
+ -------------------------------------------------------------------
11737
+ ---------------------------------------------------------------------
11738
+ InterpolatorTest: test_'a_lot_of_{{something_"{{good}}"}}'_transforms
11739
+ ---------------------------------------------------------------------
11740
+ ---------------------------------------------------------------------
11741
+ InterpolatorTest: test_nested_with_multiple_nested_expressions_parses
11742
+ ---------------------------------------------------------------------
11743
+ ----------------------------------------------------
11744
+ InterpolatorTest: test_nested_with_outer_text_parses
11745
+ ----------------------------------------------------
11746
+ -------------------------------------------------------
11747
+ InterpolatorTest: test_nested_without_outer_text_parses
11748
+ -------------------------------------------------------
11749
+ ---------------------------------------------------------------------
11750
+ InterpolatorTest: test_simple_expression_with_surrounding_text_parses
11751
+ ---------------------------------------------------------------------
11752
+ -------------------------------------------------
11753
+ InterpolatorTest: test_simplest_expression_parses
11754
+ -------------------------------------------------
11755
+ ---------------------------------------------------------------
11756
+ ExpressFormTest: test_express_form_contents_are_inside_the_form
11757
+ ---------------------------------------------------------------
11758
+ ---------------------------------------------------------
11759
+ ExpressFormTest: test_express_form_default_method_is_POST
11760
+ ---------------------------------------------------------
11761
+ -----------------------------------------------------
11762
+ ExpressFormTest: test_simplest_form_contains_form_tag
11763
+ -----------------------------------------------------
11764
+ ---------------------------------------------------------------
11765
+ ExpressFormTest: test_simplest_form_contains_rails_form_helpers
11766
+ ---------------------------------------------------------------
11767
+ ---------------------------------------------------
11768
+ ExpressFormTest: test_simplest_form_contains_submit
11769
+ ---------------------------------------------------
11770
+ -------------------------------------------
11771
+ ExpressFormTest: test_simplest_form_renders
11772
+ -------------------------------------------
11773
+ -------------------------------------------------------------------
11774
+ ExpressFormTest: test_simplest_form_uses_form_action_for_the_action
11775
+ -------------------------------------------------------------------
11776
+ -----------------------------------------------------------
11777
+ ExpressFormTest: test_simplest_form_will_have_the_proper_id
11778
+ -----------------------------------------------------------
11779
+ --------------------------------------------------------------
11780
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
11781
+ --------------------------------------------------------------
11782
+ ------------------------------------------------------------------------
11783
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
11784
+ ------------------------------------------------------------------------
11785
+ ----------------------------------------------------------
11786
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
11787
+ ----------------------------------------------------------
11788
+ -----------------------------
11789
+ HandlerTest: test_locals_work
11790
+ -----------------------------
11791
+ ------------------------------------------------------------
11792
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
11793
+ ------------------------------------------------------------
11794
+ ----------------------------------
11795
+ HandlerTest: test_other_attributes
11796
+ ----------------------------------
11797
+ -------------------------------------------
11798
+ HandlerTest: test_our_handler_is_registered
11799
+ -------------------------------------------
11800
+ ------------------------------------------------------------------
11801
+ HandlerTest: test_raises_warning_if_template_has_conditional_logic
11802
+ ------------------------------------------------------------------
11803
+ ---------------------------------------
11804
+ HandlerTest: test_string_in_block_works
11805
+ ---------------------------------------
11806
+ -----------------------------------------------------------------
11807
+ BaseTest: test_.contains_places_fragment_inside_the_enclosing_tag
11808
+ -----------------------------------------------------------------
11809
+ ---------------------------------------------------------
11810
+ BaseTest: test_.has_attributes_creates_default_attributes
11811
+ ---------------------------------------------------------
11812
+ -----------------------------------------------------
11813
+ BaseTest: test_.tag_name_determines_the_enclosing_tag
11814
+ -----------------------------------------------------
11815
+ --------------------------------------------------
11816
+ BaseTest: test_before_build_hook_runs_before_build
11817
+ --------------------------------------------------
11818
+ --------------------------------------------------------------
11819
+ BaseTest: test_class_name_is_dasherized_instead_of_underscored
11820
+ --------------------------------------------------------------
11821
+ -----------------------------------------------------------
11822
+ BaseTest: test_class_option_adds_a_class,_does_not_override
11823
+ -----------------------------------------------------------
11824
+ ----------------------------------------------------
11825
+ BaseTest: test_options_are_passed_to_html_attributes
11826
+ ----------------------------------------------------
11827
+ -----------------------------------------------------------------------------
11828
+ ConfigurableTest: test_.has_argument_adds_a_positional_configuration_argument
11829
+ -----------------------------------------------------------------------------
11830
+ ----------------------------------------------------------------------------------------
11831
+ ConfigurableTest: test_.has_argument_appends_supported_arguments_in_order_of_inheritence
11832
+ ----------------------------------------------------------------------------------------
11833
+ -------------------------------------------------------------------------------
11834
+ ConfigurableTest: test_.has_argument_as:_allows_overwrite_of_inherited_argument
11835
+ -------------------------------------------------------------------------------
11836
+ -----------------------------------------------------------------------------------------------------
11837
+ ConfigurableTest: test_.has_argument_makes_builder_arguments_accessible_by_name_according_to_position
11838
+ -----------------------------------------------------------------------------------------------------
11839
+ ---------------------------------------------------
11840
+ ConfigurableTest: test_default_values_are_supported
11841
+ ---------------------------------------------------
11842
+ ----------------------------------------------------------------------
11843
+ ConfigurableTest: test_default_values_for_attributes_can_be_overridden
11844
+ ----------------------------------------------------------------------
11845
+ ------------------------------------------------------------------------
11846
+ ConfigurableTest: test_does_not_pass_declared_options_as_html_attributes
11847
+ ------------------------------------------------------------------------
11848
+ -----------------------------------------------------------
11849
+ ConfigurableTest: test_has_no_id_attribute_if_not_specified
11850
+ -----------------------------------------------------------
11851
+ --------------------------------------------
11852
+ ConfigurableTest: test_options_are_inherited
11853
+ --------------------------------------------
11854
+ -------------------------------------------------------
11855
+ ConfigurableTest: test_renders_first_argument_as_dom_id
11856
+ -------------------------------------------------------
11857
+ ----------------------------------------------------
11858
+ ConfigurableTest: test_required_options_are_required
11859
+ ----------------------------------------------------
11860
+ --------------------------------------------------
11861
+ ConfigurableTest: test_supports_option_declaration
11862
+ --------------------------------------------------
11863
+ ---------------------------------------------------------------
11864
+ ConfigurableTest: test_unrecognized_options_raises_an_exception
11865
+ ---------------------------------------------------------------
11866
+ ----------------------------------------------------
11867
+ ConfigurableTest: test_values_can_be_set_for_options
11868
+ ----------------------------------------------------
11869
+ --------------------------------------------
11870
+ CompilerTest: test_.compile_returns_a_string
11871
+ --------------------------------------------
11872
+ ----------------------------------------------
11873
+ SubmitTest: test_submit_accepts_a_class_option
11874
+ ----------------------------------------------
11875
+ --------------------------------------------------------
11876
+ SubmitTest: test_submit_accepts_a_value_and_class_option
11877
+ --------------------------------------------------------
11878
+ ----------------------------------------------------
11879
+ SubmitTest: test_submit_takes_string_param_for_value
11880
+ ----------------------------------------------------
11881
+ -------------------------------------------------------------
11882
+ CheckboxTest: test_checkbox_places_the_label_before_the_input
11883
+ -------------------------------------------------------------
11884
+ -------------------------------------------------------
11885
+ CheckboxTest: test_checkbox_respects_label_after:_true_
11886
+ -------------------------------------------------------
11887
+ --------------------------------------------------------------------------------------------------
11888
+ ExpressTemplates::ResourcefulTest: test_#resource_class_returns_resource_class_option_if_specified
11889
+ --------------------------------------------------------------------------------------------------
11890
+ -----------------------------------------------------------------------------------------
11891
+ ExpressTemplates::ResourcefulTest: test_infers_a_namespace_and_no_prefix_within_an_engine
11892
+ -----------------------------------------------------------------------------------------
11893
+ ---------------------------------------------------------------------------------------------------
11894
+ ExpressTemplates::ResourcefulTest: test_infers_namespace_and_path_prefix_within_an_engine_and_scope
11895
+ ---------------------------------------------------------------------------------------------------
11896
+ ------------------------------------------------------------------------------------------------
11897
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_infers_prefix_within_a_scope_within_an_app
11898
+ ------------------------------------------------------------------------------------------------
11899
+ -----------------------------------------------------------------------------
11900
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_no_prefix_within_an_app
11901
+ -----------------------------------------------------------------------------
11902
+ ------------------------------------------------------------------------------------
11903
+ InterpolatorTest: test_"{{some_{{thing}}_foo}}"_transforms_to_"#{some_#{thing}_foo}"
11904
+ ------------------------------------------------------------------------------------
11905
+ -------------------------------------------------------------------
11906
+ InterpolatorTest: test_"{{something}}"_transforms_to_"#{something}"
11907
+ -------------------------------------------------------------------
11908
+ ---------------------------------------------------------------------
11909
+ InterpolatorTest: test_'a_lot_of_{{something_"{{good}}"}}'_transforms
11910
+ ---------------------------------------------------------------------
11911
+ ---------------------------------------------------------------------
11912
+ InterpolatorTest: test_nested_with_multiple_nested_expressions_parses
11913
+ ---------------------------------------------------------------------
11914
+ ----------------------------------------------------
11915
+ InterpolatorTest: test_nested_with_outer_text_parses
11916
+ ----------------------------------------------------
11917
+ -------------------------------------------------------
11918
+ InterpolatorTest: test_nested_without_outer_text_parses
11919
+ -------------------------------------------------------
11920
+ ---------------------------------------------------------------------
11921
+ InterpolatorTest: test_simple_expression_with_surrounding_text_parses
11922
+ ---------------------------------------------------------------------
11923
+ -------------------------------------------------
11924
+ InterpolatorTest: test_simplest_expression_parses
11925
+ -------------------------------------------------
11926
+ -----------------------------------------------------------
11927
+ RadioTest: test_radio_has_correct_label_field_name_and_text
11928
+ -----------------------------------------------------------
11929
+ ------------------------------------------------------------------
11930
+ RadioTest: test_radio_options_from_collection_when_options_omitted
11931
+ ------------------------------------------------------------------
11932
+ ----------------------------------------------------------
11933
+ RadioTest: test_radio_options_may_be_specified_with_a_hash
11934
+ ----------------------------------------------------------
11935
+ --------------------------------------------------------
11936
+ RadioTest: test_radio_options_present_with_class_'radio'
11937
+ --------------------------------------------------------
11938
+ -------------------------------------------------
11939
+ RadioTest: test_radio_requires_a_parent_component
11940
+ -------------------------------------------------
11941
+ ------------------------------------------------------------
11942
+ RadioTest: test_radio_throws_error_if_given_improper_options
11943
+ ------------------------------------------------------------
11944
+ ----------------------------------------------
11945
+ SubmitTest: test_submit_accepts_a_class_option
11946
+ ----------------------------------------------
11947
+ --------------------------------------------------------
11948
+ SubmitTest: test_submit_accepts_a_value_and_class_option
11949
+ --------------------------------------------------------
11950
+ ----------------------------------------------------
11951
+ SubmitTest: test_submit_takes_string_param_for_value
11952
+ ----------------------------------------------------
11953
+ -----------------------------------------------------------------
11954
+ BaseTest: test_.contains_places_fragment_inside_the_enclosing_tag
11955
+ -----------------------------------------------------------------
11956
+ ---------------------------------------------------------
11957
+ BaseTest: test_.has_attributes_creates_default_attributes
11958
+ ---------------------------------------------------------
11959
+ -----------------------------------------------------
11960
+ BaseTest: test_.tag_name_determines_the_enclosing_tag
11961
+ -----------------------------------------------------
11962
+ --------------------------------------------------
11963
+ BaseTest: test_before_build_hook_runs_before_build
11964
+ --------------------------------------------------
11965
+ --------------------------------------------------------------
11966
+ BaseTest: test_class_name_is_dasherized_instead_of_underscored
11967
+ --------------------------------------------------------------
11968
+ -----------------------------------------------------------
11969
+ BaseTest: test_class_option_adds_a_class,_does_not_override
11970
+ -----------------------------------------------------------
11971
+ ----------------------------------------------------
11972
+ BaseTest: test_options_are_passed_to_html_attributes
11973
+ ----------------------------------------------------
11974
+ ---------------------------------------------------------------------------------------
11975
+ BasicFieldsTest: test_adds_error_class_if_there_are_errors_on_a_field_with_no_class_set
11976
+ ---------------------------------------------------------------------------------------
11977
+ ----------------------------------------------------------------------------------------------
11978
+ BasicFieldsTest: test_adds_error_class_if_there_are_errors_on_a_field_with_no_input_attributes
11979
+ ----------------------------------------------------------------------------------------------
11980
+ --------------------------------------------------------------------------------------------
11981
+ BasicFieldsTest: test_adds_error_to_class_if_there_are_errors_on_a_field_with_existing_class
11982
+ --------------------------------------------------------------------------------------------
11983
+ -------------------------------------
11984
+ BasicFieldsTest: test_all_fields_work
11985
+ -------------------------------------
11986
+ ---------------------------------------------------------------------------------
11987
+ BasicFieldsTest: test_hidden_field_passes_additional_html_options_to_rails_helper
11988
+ ---------------------------------------------------------------------------------
11989
+ ---------------------------------------------------------
11990
+ BasicFieldsTest: test_hidden_uses_rails_hidden_tag_helper
11991
+ ---------------------------------------------------------
11992
+ ---------------------------------------------------------
11993
+ BasicFieldsTest: test_passing_html_options_to_fields_work
11994
+ ---------------------------------------------------------
11995
+ -----------------------------------------------------------------------------
11996
+ BasicFieldsTest: test_textarea_passes_additional_html_options_to_rails_helper
11997
+ -----------------------------------------------------------------------------
11998
+ ----------------------------------------------------------
11999
+ BasicFieldsTest: test_textarea_uses_rails_text_area_helper
12000
+ ----------------------------------------------------------
12001
+ -----------------------------------------------------------------------------------------
12002
+ ProcTest: test_#source_body_captures_full_body_when_parens_around_parameters_not_provided
12003
+ -----------------------------------------------------------------------------------------
12004
+ ------------------------------------------------
12005
+ ProcTest: test_#source_body_handles_funky_bodies
12006
+ ------------------------------------------------
12007
+ ----------------------------------------------------------
12008
+ ProcTest: test_#source_body_raises_exception_for_arity_>_0
12009
+ ----------------------------------------------------------
12010
+ ------------------------------------------------------
12011
+ ProcTest: test_#source_body_returns_the_body_of_a_proc
12012
+ ------------------------------------------------------
12013
+ ----------------------------------------------
12014
+ ProcTest: test_#source_returns_a_proc's_source
12015
+ ----------------------------------------------
12016
+ ---------------------------------------------------------------
12017
+ ProcTest: test_#source_work_with_a_stabby_lambda_spanning_lines
12018
+ ---------------------------------------------------------------
12019
+ -----------------------------------------------------------------
12020
+ ProcTest: test_#source_works_when_a_proc_is_inside_a_hash_literal
12021
+ -----------------------------------------------------------------
12022
+ ------------------------------------------------------------
12023
+ ProcTest: test_#source_works_with_a_block_containing_a_block
12024
+ ------------------------------------------------------------
12025
+ --------------------------------------------
12026
+ ProcTest: test_#source_works_with_a_do_block
12027
+ --------------------------------------------
12028
+ -----------------------------------------------------
12029
+ ProcTest: test_#source_works_with_a_single_line_block
12030
+ -----------------------------------------------------
12031
+ -------------------------------------------------
12032
+ ProcTest: test_#source_works_with_a_stabby_lambda
12033
+ -------------------------------------------------
12034
+ ----------------------------------------------------------------------------------------
12035
+ ProcTest: test_.from_source_stores_source_of_a_dynamicly_built_proc_for_later_inspection
12036
+ ----------------------------------------------------------------------------------------
12037
+ ---------------------------------------------------------------------------------------------
12038
+ IndenterTest: test_.for(:name)_returns_current_indent_without_newline_when_block_is_not_given
12039
+ ---------------------------------------------------------------------------------------------
12040
+ -----------------------------------------------------------------
12041
+ IndenterTest: test_.for(:name)_takes_a_block_receiving_whitespace
12042
+ -----------------------------------------------------------------
12043
+ ------------------------------------------------------------------
12044
+ IndenterTest: test_nesting_blocks_increases_whitespace_accordingly
12045
+ ------------------------------------------------------------------
12046
+ ----------------------------------------------------------------
12047
+ SelectTest: test_select_collection_works_using_collection_select
12048
+ ----------------------------------------------------------------
12049
+ ------------------------------------------
12050
+ SelectTest: test_select_comes_with_a_label
12051
+ ------------------------------------------
12052
+ --------------------------------------------------
12053
+ SelectTest: test_select_defaults_can_be_overridden
12054
+ --------------------------------------------------
12055
+ -------------------------------------------------------
12056
+ SelectTest: test_select_defaults_to_include_blank:_true
12057
+ -------------------------------------------------------
12058
+ ------------------------------------------------------------------------------------
12059
+ SelectTest: test_select_generates_correct_options_when_values_are_specified_as_array
12060
+ ------------------------------------------------------------------------------------
12061
+ ------------------------------------------------------------------------
12062
+ SelectTest: test_select_generates_options_from_data_when_options_omitted
12063
+ ------------------------------------------------------------------------
12064
+ --------------------------------------------------------------
12065
+ SelectTest: test_select_multiple:_true_if_passed_multiple_true
12066
+ --------------------------------------------------------------
12067
+ -----------------------------------------------------------------------------------------
12068
+ SelectTest: test_select_multiple_gets_options_from_associated_has_many_through_collection
12069
+ -----------------------------------------------------------------------------------------
12070
+ ---------------------------------------------------
12071
+ SelectTest: test_select_requires_a_parent_component
12072
+ ---------------------------------------------------
12073
+ ---------------------------------------------------------------------------
12074
+ SelectTest: test_select_uses_options_from_collect..._when_field_is_relation
12075
+ ---------------------------------------------------------------------------
12076
+ -------------------------------------------------------------------------
12077
+ SelectTest: test_selected_option_is_omitted_selection_is_taken_from_model
12078
+ -------------------------------------------------------------------------
12079
+ --------------------------------------------------------------
12080
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
12081
+ --------------------------------------------------------------
12082
+ ------------------------------------------------------------------------
12083
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
12084
+ ------------------------------------------------------------------------
12085
+ ----------------------------------------------------------
12086
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
12087
+ ----------------------------------------------------------
12088
+ -----------------------------
12089
+ HandlerTest: test_locals_work
12090
+ -----------------------------
12091
+ ------------------------------------------------------------
12092
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
12093
+ ------------------------------------------------------------
12094
+ ----------------------------------
12095
+ HandlerTest: test_other_attributes
12096
+ ----------------------------------
12097
+ -------------------------------------------
12098
+ HandlerTest: test_our_handler_is_registered
12099
+ -------------------------------------------
12100
+ ------------------------------------------------------------------
12101
+ HandlerTest: test_raises_warning_if_template_has_conditional_logic
12102
+ ------------------------------------------------------------------
12103
+ ---------------------------------------
12104
+ HandlerTest: test_string_in_block_works
12105
+ ---------------------------------------
12106
+ -----------------------------------------
12107
+ HelloControllerTest: test_should_get_show
12108
+ -----------------------------------------
12109
+ Processing by HelloController#show as HTML
12110
+ Rendered hello/show.html.et within layouts/application (0.9ms)
12111
+ Completed 200 OK in 115ms (Views: 114.8ms)
12112
+ -----------------------------------------------------------------------------
12113
+ ConfigurableTest: test_.has_argument_adds_a_positional_configuration_argument
12114
+ -----------------------------------------------------------------------------
12115
+ ----------------------------------------------------------------------------------------
12116
+ ConfigurableTest: test_.has_argument_appends_supported_arguments_in_order_of_inheritence
12117
+ ----------------------------------------------------------------------------------------
12118
+ -------------------------------------------------------------------------------
12119
+ ConfigurableTest: test_.has_argument_as:_allows_overwrite_of_inherited_argument
12120
+ -------------------------------------------------------------------------------
12121
+ -----------------------------------------------------------------------------------------------------
12122
+ ConfigurableTest: test_.has_argument_makes_builder_arguments_accessible_by_name_according_to_position
12123
+ -----------------------------------------------------------------------------------------------------
12124
+ ---------------------------------------------------
12125
+ ConfigurableTest: test_default_values_are_supported
12126
+ ---------------------------------------------------
12127
+ ----------------------------------------------------------------------
12128
+ ConfigurableTest: test_default_values_for_attributes_can_be_overridden
12129
+ ----------------------------------------------------------------------
12130
+ ------------------------------------------------------------------------
12131
+ ConfigurableTest: test_does_not_pass_declared_options_as_html_attributes
12132
+ ------------------------------------------------------------------------
12133
+ -----------------------------------------------------------
12134
+ ConfigurableTest: test_has_no_id_attribute_if_not_specified
12135
+ -----------------------------------------------------------
12136
+ --------------------------------------------
12137
+ ConfigurableTest: test_options_are_inherited
12138
+ --------------------------------------------
12139
+ -------------------------------------------------------
12140
+ ConfigurableTest: test_renders_first_argument_as_dom_id
12141
+ -------------------------------------------------------
12142
+ ----------------------------------------------------
12143
+ ConfigurableTest: test_required_options_are_required
12144
+ ----------------------------------------------------
12145
+ --------------------------------------------------
12146
+ ConfigurableTest: test_supports_option_declaration
12147
+ --------------------------------------------------
12148
+ ---------------------------------------------------------------
12149
+ ConfigurableTest: test_unrecognized_options_raises_an_exception
12150
+ ---------------------------------------------------------------
12151
+ ----------------------------------------------------
12152
+ ConfigurableTest: test_values_can_be_set_for_options
12153
+ ----------------------------------------------------
12154
+ --------------------------------------------------------------------------------------------------
12155
+ ExpressTemplates::ResourcefulTest: test_#resource_class_returns_resource_class_option_if_specified
12156
+ --------------------------------------------------------------------------------------------------
12157
+ -----------------------------------------------------------------------------------------
12158
+ ExpressTemplates::ResourcefulTest: test_infers_a_namespace_and_no_prefix_within_an_engine
12159
+ -----------------------------------------------------------------------------------------
12160
+ ---------------------------------------------------------------------------------------------------
12161
+ ExpressTemplates::ResourcefulTest: test_infers_namespace_and_path_prefix_within_an_engine_and_scope
12162
+ ---------------------------------------------------------------------------------------------------
12163
+ ------------------------------------------------------------------------------------------------
12164
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_infers_prefix_within_a_scope_within_an_app
12165
+ ------------------------------------------------------------------------------------------------
12166
+ -----------------------------------------------------------------------------
12167
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_no_prefix_within_an_app
12168
+ -----------------------------------------------------------------------------
12169
+ ------------------------------------------------------------------------------------
12170
+ StringTest: test_String#inspect_works_normally_when_#to_view_code_hasn't_been_called
12171
+ ------------------------------------------------------------------------------------
12172
+ --------------------------------------------------------------------------------
12173
+ StringTest: test_String#to_view_code_causes_subsequent_#inspect_to_remove_quotes
12174
+ --------------------------------------------------------------------------------
12175
+ -------------------------------------------------------
12176
+ StringTest: test_String#to_view_code_returns_the_string
12177
+ -------------------------------------------------------
12178
+ --------------------------------------------
12179
+ CompilerTest: test_.compile_returns_a_string
12180
+ --------------------------------------------
12181
+ -------------------------------------------------------------
12182
+ CheckboxTest: test_checkbox_places_the_label_before_the_input
12183
+ -------------------------------------------------------------
12184
+ -------------------------------------------------------
12185
+ CheckboxTest: test_checkbox_respects_label_after:_true_
12186
+ -------------------------------------------------------
12187
+ ---------------------------------------------------------------------
12188
+ ExpressTemplatesTest: test_ExpressTemplates.render_renders_a_template
12189
+ ---------------------------------------------------------------------
12190
+ -------------------------------------------
12191
+ ExpressTemplatesTest: test_we_have_a_module
12192
+ -------------------------------------------
12193
+ ------------------------------------------------------------
12194
+ TreeForTest: test_tree_for_accepts_block_with_custom_content
12195
+ ------------------------------------------------------------
12196
+ ---------------------------------------------------------------------------
12197
+ TreeForTest: test_tree_for_renders_correct_markup_with_node.name_as_default
12198
+ ---------------------------------------------------------------------------
12199
+ ---------------------------------------------------------------
12200
+ ExpressFormTest: test_express_form_contents_are_inside_the_form
12201
+ ---------------------------------------------------------------
12202
+ ---------------------------------------------------------
12203
+ ExpressFormTest: test_express_form_default_method_is_POST
12204
+ ---------------------------------------------------------
12205
+ -----------------------------------------------------
12206
+ ExpressFormTest: test_simplest_form_contains_form_tag
12207
+ -----------------------------------------------------
12208
+ ---------------------------------------------------------------
12209
+ ExpressFormTest: test_simplest_form_contains_rails_form_helpers
12210
+ ---------------------------------------------------------------
12211
+ ---------------------------------------------------
12212
+ ExpressFormTest: test_simplest_form_contains_submit
12213
+ ---------------------------------------------------
12214
+ -------------------------------------------
12215
+ ExpressFormTest: test_simplest_form_renders
12216
+ -------------------------------------------
12217
+ -------------------------------------------------------------------
12218
+ ExpressFormTest: test_simplest_form_uses_form_action_for_the_action
12219
+ -------------------------------------------------------------------
12220
+ -----------------------------------------------------------
12221
+ ExpressFormTest: test_simplest_form_will_have_the_proper_id
12222
+ -----------------------------------------------------------
12223
+ -------------------------------------------------------------
12224
+ CheckboxTest: test_checkbox_places_the_label_before_the_input
12225
+ -------------------------------------------------------------
12226
+ -------------------------------------------------------
12227
+ CheckboxTest: test_checkbox_respects_label_after:_true_
12228
+ -------------------------------------------------------
12229
+ --------------------------------------------
12230
+ CompilerTest: test_.compile_returns_a_string
12231
+ --------------------------------------------
12232
+ -----------------------------------------------------------------------------
12233
+ ConfigurableTest: test_.has_argument_adds_a_positional_configuration_argument
12234
+ -----------------------------------------------------------------------------
12235
+ ----------------------------------------------------------------------------------------
12236
+ ConfigurableTest: test_.has_argument_appends_supported_arguments_in_order_of_inheritence
12237
+ ----------------------------------------------------------------------------------------
12238
+ -------------------------------------------------------------------------------
12239
+ ConfigurableTest: test_.has_argument_as:_allows_overwrite_of_inherited_argument
12240
+ -------------------------------------------------------------------------------
12241
+ -----------------------------------------------------------------------------------------------------
12242
+ ConfigurableTest: test_.has_argument_makes_builder_arguments_accessible_by_name_according_to_position
12243
+ -----------------------------------------------------------------------------------------------------
12244
+ ---------------------------------------------------
12245
+ ConfigurableTest: test_default_values_are_supported
12246
+ ---------------------------------------------------
12247
+ ----------------------------------------------------------------------
12248
+ ConfigurableTest: test_default_values_for_attributes_can_be_overridden
12249
+ ----------------------------------------------------------------------
12250
+ ------------------------------------------------------------------------
12251
+ ConfigurableTest: test_does_not_pass_declared_options_as_html_attributes
12252
+ ------------------------------------------------------------------------
12253
+ -----------------------------------------------------------
12254
+ ConfigurableTest: test_has_no_id_attribute_if_not_specified
12255
+ -----------------------------------------------------------
12256
+ --------------------------------------------
12257
+ ConfigurableTest: test_options_are_inherited
12258
+ --------------------------------------------
12259
+ -------------------------------------------------------
12260
+ ConfigurableTest: test_renders_first_argument_as_dom_id
12261
+ -------------------------------------------------------
12262
+ ----------------------------------------------------
12263
+ ConfigurableTest: test_required_options_are_required
12264
+ ----------------------------------------------------
12265
+ --------------------------------------------------
12266
+ ConfigurableTest: test_supports_option_declaration
12267
+ --------------------------------------------------
12268
+ ---------------------------------------------------------------
12269
+ ConfigurableTest: test_unrecognized_options_raises_an_exception
12270
+ ---------------------------------------------------------------
12271
+ ----------------------------------------------------
12272
+ ConfigurableTest: test_values_can_be_set_for_options
12273
+ ----------------------------------------------------
12274
+ -----------------------------------------------------------
12275
+ RadioTest: test_radio_has_correct_label_field_name_and_text
12276
+ -----------------------------------------------------------
12277
+ ------------------------------------------------------------------
12278
+ RadioTest: test_radio_options_from_collection_when_options_omitted
12279
+ ------------------------------------------------------------------
12280
+ ----------------------------------------------------------
12281
+ RadioTest: test_radio_options_may_be_specified_with_a_hash
12282
+ ----------------------------------------------------------
12283
+ --------------------------------------------------------
12284
+ RadioTest: test_radio_options_present_with_class_'radio'
12285
+ --------------------------------------------------------
12286
+ -------------------------------------------------
12287
+ RadioTest: test_radio_requires_a_parent_component
12288
+ -------------------------------------------------
12289
+ ------------------------------------------------------------
12290
+ RadioTest: test_radio_throws_error_if_given_improper_options
12291
+ ------------------------------------------------------------
12292
+ ---------------------------------------------------------------------------------------------
12293
+ IndenterTest: test_.for(:name)_returns_current_indent_without_newline_when_block_is_not_given
12294
+ ---------------------------------------------------------------------------------------------
12295
+ -----------------------------------------------------------------
12296
+ IndenterTest: test_.for(:name)_takes_a_block_receiving_whitespace
12297
+ -----------------------------------------------------------------
12298
+ ------------------------------------------------------------------
12299
+ IndenterTest: test_nesting_blocks_increases_whitespace_accordingly
12300
+ ------------------------------------------------------------------
12301
+ ----------------------------------------------
12302
+ SubmitTest: test_submit_accepts_a_class_option
12303
+ ----------------------------------------------
12304
+ --------------------------------------------------------
12305
+ SubmitTest: test_submit_accepts_a_value_and_class_option
12306
+ --------------------------------------------------------
12307
+ ----------------------------------------------------
12308
+ SubmitTest: test_submit_takes_string_param_for_value
12309
+ ----------------------------------------------------
12310
+ ----------------------------------------------------------------
12311
+ SelectTest: test_select_collection_works_using_collection_select
12312
+ ----------------------------------------------------------------
12313
+ ------------------------------------------
12314
+ SelectTest: test_select_comes_with_a_label
12315
+ ------------------------------------------
12316
+ --------------------------------------------------
12317
+ SelectTest: test_select_defaults_can_be_overridden
12318
+ --------------------------------------------------
12319
+ -------------------------------------------------------
12320
+ SelectTest: test_select_defaults_to_include_blank:_true
12321
+ -------------------------------------------------------
12322
+ ------------------------------------------------------------------------------------
12323
+ SelectTest: test_select_generates_correct_options_when_values_are_specified_as_array
12324
+ ------------------------------------------------------------------------------------
12325
+ ------------------------------------------------------------------------
12326
+ SelectTest: test_select_generates_options_from_data_when_options_omitted
12327
+ ------------------------------------------------------------------------
12328
+ --------------------------------------------------------------
12329
+ SelectTest: test_select_multiple:_true_if_passed_multiple_true
12330
+ --------------------------------------------------------------
12331
+ -----------------------------------------------------------------------------------------
12332
+ SelectTest: test_select_multiple_gets_options_from_associated_has_many_through_collection
12333
+ -----------------------------------------------------------------------------------------
12334
+ ---------------------------------------------------
12335
+ SelectTest: test_select_requires_a_parent_component
12336
+ ---------------------------------------------------
12337
+ ---------------------------------------------------------------------------
12338
+ SelectTest: test_select_uses_options_from_collect..._when_field_is_relation
12339
+ ---------------------------------------------------------------------------
12340
+ -------------------------------------------------------------------------
12341
+ SelectTest: test_selected_option_is_omitted_selection_is_taken_from_model
12342
+ -------------------------------------------------------------------------
12343
+ --------------------------------------------------------------------------------------------------
12344
+ ExpressTemplates::ResourcefulTest: test_#resource_class_returns_resource_class_option_if_specified
12345
+ --------------------------------------------------------------------------------------------------
12346
+ -----------------------------------------------------------------------------------------
12347
+ ExpressTemplates::ResourcefulTest: test_infers_a_namespace_and_no_prefix_within_an_engine
12348
+ -----------------------------------------------------------------------------------------
12349
+ ---------------------------------------------------------------------------------------------------
12350
+ ExpressTemplates::ResourcefulTest: test_infers_namespace_and_path_prefix_within_an_engine_and_scope
12351
+ ---------------------------------------------------------------------------------------------------
12352
+ ------------------------------------------------------------------------------------------------
12353
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_infers_prefix_within_a_scope_within_an_app
12354
+ ------------------------------------------------------------------------------------------------
12355
+ -----------------------------------------------------------------------------
12356
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_no_prefix_within_an_app
12357
+ -----------------------------------------------------------------------------
12358
+ ---------------------------------------------------------------------------------------
12359
+ BasicFieldsTest: test_adds_error_class_if_there_are_errors_on_a_field_with_no_class_set
12360
+ ---------------------------------------------------------------------------------------
12361
+ ----------------------------------------------------------------------------------------------
12362
+ BasicFieldsTest: test_adds_error_class_if_there_are_errors_on_a_field_with_no_input_attributes
12363
+ ----------------------------------------------------------------------------------------------
12364
+ --------------------------------------------------------------------------------------------
12365
+ BasicFieldsTest: test_adds_error_to_class_if_there_are_errors_on_a_field_with_existing_class
12366
+ --------------------------------------------------------------------------------------------
12367
+ -------------------------------------
12368
+ BasicFieldsTest: test_all_fields_work
12369
+ -------------------------------------
12370
+ ---------------------------------------------------------------------------------
12371
+ BasicFieldsTest: test_hidden_field_passes_additional_html_options_to_rails_helper
12372
+ ---------------------------------------------------------------------------------
12373
+ ---------------------------------------------------------
12374
+ BasicFieldsTest: test_hidden_uses_rails_hidden_tag_helper
12375
+ ---------------------------------------------------------
12376
+ ---------------------------------------------------------
12377
+ BasicFieldsTest: test_passing_html_options_to_fields_work
12378
+ ---------------------------------------------------------
12379
+ -----------------------------------------------------------------------------
12380
+ BasicFieldsTest: test_textarea_passes_additional_html_options_to_rails_helper
12381
+ -----------------------------------------------------------------------------
12382
+ ----------------------------------------------------------
12383
+ BasicFieldsTest: test_textarea_uses_rails_text_area_helper
12384
+ ----------------------------------------------------------
12385
+ ------------------------------------------------------------
12386
+ TreeForTest: test_tree_for_accepts_block_with_custom_content
12387
+ ------------------------------------------------------------
12388
+ ---------------------------------------------------------------------------
12389
+ TreeForTest: test_tree_for_renders_correct_markup_with_node.name_as_default
12390
+ ---------------------------------------------------------------------------
12391
+ --------------------------------------------------------------
12392
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
12393
+ --------------------------------------------------------------
12394
+ ------------------------------------------------------------------------
12395
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
12396
+ ------------------------------------------------------------------------
12397
+ ----------------------------------------------------------
12398
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
12399
+ ----------------------------------------------------------
12400
+ -----------------------------
12401
+ HandlerTest: test_locals_work
12402
+ -----------------------------
12403
+ ------------------------------------------------------------
12404
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
12405
+ ------------------------------------------------------------
12406
+ ----------------------------------
12407
+ HandlerTest: test_other_attributes
12408
+ ----------------------------------
12409
+ -------------------------------------------
12410
+ HandlerTest: test_our_handler_is_registered
12411
+ -------------------------------------------
12412
+ ------------------------------------------------------------------
12413
+ HandlerTest: test_raises_warning_if_template_has_conditional_logic
12414
+ ------------------------------------------------------------------
12415
+ ---------------------------------------
12416
+ HandlerTest: test_string_in_block_works
12417
+ ---------------------------------------
12418
+ ------------------------------------------------------------------------------------
12419
+ StringTest: test_String#inspect_works_normally_when_#to_view_code_hasn't_been_called
12420
+ ------------------------------------------------------------------------------------
12421
+ --------------------------------------------------------------------------------
12422
+ StringTest: test_String#to_view_code_causes_subsequent_#inspect_to_remove_quotes
12423
+ --------------------------------------------------------------------------------
12424
+ -------------------------------------------------------
12425
+ StringTest: test_String#to_view_code_returns_the_string
12426
+ -------------------------------------------------------
12427
+ ---------------------------------------------------------------
12428
+ ExpressFormTest: test_express_form_contents_are_inside_the_form
12429
+ ---------------------------------------------------------------
12430
+ ---------------------------------------------------------
12431
+ ExpressFormTest: test_express_form_default_method_is_POST
12432
+ ---------------------------------------------------------
12433
+ -----------------------------------------------------
12434
+ ExpressFormTest: test_simplest_form_contains_form_tag
12435
+ -----------------------------------------------------
12436
+ ---------------------------------------------------------------
12437
+ ExpressFormTest: test_simplest_form_contains_rails_form_helpers
12438
+ ---------------------------------------------------------------
12439
+ ---------------------------------------------------
12440
+ ExpressFormTest: test_simplest_form_contains_submit
12441
+ ---------------------------------------------------
12442
+ -------------------------------------------
12443
+ ExpressFormTest: test_simplest_form_renders
12444
+ -------------------------------------------
12445
+ -------------------------------------------------------------------
12446
+ ExpressFormTest: test_simplest_form_uses_form_action_for_the_action
12447
+ -------------------------------------------------------------------
12448
+ -----------------------------------------------------------
12449
+ ExpressFormTest: test_simplest_form_will_have_the_proper_id
12450
+ -----------------------------------------------------------
12451
+ ---------------------------------------------------------------------
12452
+ ExpressTemplatesTest: test_ExpressTemplates.render_renders_a_template
12453
+ ---------------------------------------------------------------------
12454
+ -------------------------------------------
12455
+ ExpressTemplatesTest: test_we_have_a_module
12456
+ -------------------------------------------
12457
+ -----------------------------------------
12458
+ HelloControllerTest: test_should_get_show
12459
+ -----------------------------------------
12460
+ Processing by HelloController#show as HTML
12461
+ Rendered hello/show.html.et within layouts/application (1.9ms)
12462
+ Completed 200 OK in 119ms (Views: 119.1ms)
12463
+ -----------------------------------------------------------------------------------------
12464
+ ProcTest: test_#source_body_captures_full_body_when_parens_around_parameters_not_provided
12465
+ -----------------------------------------------------------------------------------------
12466
+ ------------------------------------------------
12467
+ ProcTest: test_#source_body_handles_funky_bodies
12468
+ ------------------------------------------------
12469
+ ----------------------------------------------------------
12470
+ ProcTest: test_#source_body_raises_exception_for_arity_>_0
12471
+ ----------------------------------------------------------
12472
+ ------------------------------------------------------
12473
+ ProcTest: test_#source_body_returns_the_body_of_a_proc
12474
+ ------------------------------------------------------
12475
+ ----------------------------------------------
12476
+ ProcTest: test_#source_returns_a_proc's_source
12477
+ ----------------------------------------------
12478
+ ---------------------------------------------------------------
12479
+ ProcTest: test_#source_work_with_a_stabby_lambda_spanning_lines
12480
+ ---------------------------------------------------------------
12481
+ -----------------------------------------------------------------
12482
+ ProcTest: test_#source_works_when_a_proc_is_inside_a_hash_literal
12483
+ -----------------------------------------------------------------
12484
+ ------------------------------------------------------------
12485
+ ProcTest: test_#source_works_with_a_block_containing_a_block
12486
+ ------------------------------------------------------------
12487
+ --------------------------------------------
12488
+ ProcTest: test_#source_works_with_a_do_block
12489
+ --------------------------------------------
12490
+ -----------------------------------------------------
12491
+ ProcTest: test_#source_works_with_a_single_line_block
12492
+ -----------------------------------------------------
12493
+ -------------------------------------------------
12494
+ ProcTest: test_#source_works_with_a_stabby_lambda
12495
+ -------------------------------------------------
12496
+ ----------------------------------------------------------------------------------------
12497
+ ProcTest: test_.from_source_stores_source_of_a_dynamicly_built_proc_for_later_inspection
12498
+ ----------------------------------------------------------------------------------------
12499
+ -----------------------------------------------------------------
12500
+ BaseTest: test_.contains_places_fragment_inside_the_enclosing_tag
12501
+ -----------------------------------------------------------------
12502
+ ---------------------------------------------------------
12503
+ BaseTest: test_.has_attributes_creates_default_attributes
12504
+ ---------------------------------------------------------
12505
+ -----------------------------------------------------
12506
+ BaseTest: test_.tag_name_determines_the_enclosing_tag
12507
+ -----------------------------------------------------
12508
+ --------------------------------------------------
12509
+ BaseTest: test_before_build_hook_runs_before_build
12510
+ --------------------------------------------------
12511
+ --------------------------------------------------------------
12512
+ BaseTest: test_class_name_is_dasherized_instead_of_underscored
12513
+ --------------------------------------------------------------
12514
+ -----------------------------------------------------------
12515
+ BaseTest: test_class_option_adds_a_class,_does_not_override
12516
+ -----------------------------------------------------------
12517
+ ----------------------------------------------------
12518
+ BaseTest: test_options_are_passed_to_html_attributes
12519
+ ----------------------------------------------------
12520
+ ------------------------------------------------------------------------------------
12521
+ InterpolatorTest: test_"{{some_{{thing}}_foo}}"_transforms_to_"#{some_#{thing}_foo}"
12522
+ ------------------------------------------------------------------------------------
12523
+ -------------------------------------------------------------------
12524
+ InterpolatorTest: test_"{{something}}"_transforms_to_"#{something}"
12525
+ -------------------------------------------------------------------
12526
+ ---------------------------------------------------------------------
12527
+ InterpolatorTest: test_'a_lot_of_{{something_"{{good}}"}}'_transforms
12528
+ ---------------------------------------------------------------------
12529
+ ---------------------------------------------------------------------
12530
+ InterpolatorTest: test_nested_with_multiple_nested_expressions_parses
12531
+ ---------------------------------------------------------------------
12532
+ ----------------------------------------------------
12533
+ InterpolatorTest: test_nested_with_outer_text_parses
12534
+ ----------------------------------------------------
12535
+ -------------------------------------------------------
12536
+ InterpolatorTest: test_nested_without_outer_text_parses
12537
+ -------------------------------------------------------
12538
+ ---------------------------------------------------------------------
12539
+ InterpolatorTest: test_simple_expression_with_surrounding_text_parses
12540
+ ---------------------------------------------------------------------
12541
+ -------------------------------------------------
12542
+ InterpolatorTest: test_simplest_expression_parses
12543
+ -------------------------------------------------