ui_bibz 2.4.0 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.overcommit.yml +5 -0
- data/.rubocop.yml +52 -0
- data/.rubocop_todo.yml +25 -0
- data/Gemfile +5 -3
- data/Gemfile.lock +25 -1
- data/Rakefile +8 -6
- data/config/initializers/simple_form_init.rb +3 -1
- data/config/initializers/will_paginate.rb +11 -6
- data/lib/generators/ui_bibz/install_generator.rb +6 -5
- data/lib/generators/ui_bibz/templates/ui_bibz_initializer.rb +1 -1
- data/lib/tasks/ui_bibz_tasks.rake +2 -0
- data/lib/ui_bibz.rb +91 -100
- data/lib/ui_bibz/concerns/models/searchable.rb +56 -61
- data/lib/ui_bibz/helpers/ui/core/boxes_helper.rb +9 -9
- data/lib/ui_bibz/helpers/ui/core/forms_helper.rb +26 -26
- data/lib/ui_bibz/helpers/ui/core/icons_helper.rb +6 -6
- data/lib/ui_bibz/helpers/ui/core/layouts_helper.rb +5 -5
- data/lib/ui_bibz/helpers/ui/core/lists_helper.rb +5 -4
- data/lib/ui_bibz/helpers/ui/core/navigations_helper.rb +9 -9
- data/lib/ui_bibz/helpers/ui/core/notifications_helper.rb +11 -11
- data/lib/ui_bibz/helpers/ui/core/windows_helper.rb +3 -3
- data/lib/ui_bibz/helpers/ui/core_helper.rb +2 -0
- data/lib/ui_bibz/helpers/ui/ux_helper.rb +12 -12
- data/lib/ui_bibz/helpers/utils_helper.rb +8 -11
- data/lib/ui_bibz/infos.rb +9 -7
- data/lib/ui_bibz/inputs/ui_bibz_form/ui_bibz_form_builder.rb +40 -39
- data/lib/ui_bibz/inputs/ui_bibz_inputs/base_input.rb +6 -5
- data/lib/ui_bibz/inputs/ui_bibz_inputs/collection_input.rb +8 -6
- data/lib/ui_bibz/inputs/ui_bibz_inputs/string_input.rb +18 -18
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_auto_complete_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_box_switch_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_checkbox_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_choice_group_input.rb +6 -5
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_date_picker_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_dropdown_select_field_input.rb +3 -3
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_file_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_formula_field_input.rb +5 -4
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_markdown_editor_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_multi_column_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_multi_select_field_input.rb +3 -3
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_number_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_radio_field_input.rb +7 -7
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_range_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_select_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_switch_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_text_field_input.rb +3 -2
- data/lib/ui_bibz/rails/engine.rb +11 -15
- data/lib/ui_bibz/ui/base.rb +10 -6
- data/lib/ui_bibz/ui/core/boxes/card.rb +31 -32
- data/lib/ui_bibz/ui/core/boxes/card_accordion.rb +7 -8
- data/lib/ui_bibz/ui/core/boxes/card_column.rb +11 -12
- data/lib/ui_bibz/ui/core/boxes/card_deck.rb +11 -12
- data/lib/ui_bibz/ui/core/boxes/card_group.rb +11 -12
- data/lib/ui_bibz/ui/core/boxes/components/body/card_body_link.rb +5 -6
- data/lib/ui_bibz/ui/core/boxes/components/body/card_body_text.rb +5 -6
- data/lib/ui_bibz/ui/core/boxes/components/body/card_body_title.rb +5 -6
- data/lib/ui_bibz/ui/core/boxes/components/card_body.rb +11 -12
- data/lib/ui_bibz/ui/core/boxes/components/card_footer.rb +7 -8
- data/lib/ui_bibz/ui/core/boxes/components/card_header.rb +12 -13
- data/lib/ui_bibz/ui/core/boxes/components/card_image.rb +6 -7
- data/lib/ui_bibz/ui/core/boxes/components/card_list_group.rb +4 -5
- data/lib/ui_bibz/ui/core/boxes/components/card_tab_group.rb +5 -6
- data/lib/ui_bibz/ui/core/boxes/jumbotron.rb +5 -6
- data/lib/ui_bibz/ui/core/component.rb +22 -20
- data/lib/ui_bibz/ui/core/forms/buttons/button.rb +14 -15
- data/lib/ui_bibz/ui/core/forms/buttons/button_group.rb +14 -15
- data/lib/ui_bibz/ui/core/forms/buttons/button_link.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/buttons/button_refresh.rb +11 -11
- data/lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/choices/box_switch_field.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/choices/checkbox_field.rb +10 -11
- data/lib/ui_bibz/ui/core/forms/choices/choice_group.rb +8 -9
- data/lib/ui_bibz/ui/core/forms/choices/components/choice.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/choices/radio_field.rb +6 -7
- data/lib/ui_bibz/ui/core/forms/choices/switch_field.rb +4 -5
- data/lib/ui_bibz/ui/core/forms/dates/date_picker_field.rb +22 -23
- data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_divider.rb +3 -5
- data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_header.rb +4 -5
- data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_link.rb +6 -7
- data/lib/ui_bibz/ui/core/forms/dropdowns/dropdown.rb +21 -22
- data/lib/ui_bibz/ui/core/forms/dropdowns/split_dropdown.rb +8 -9
- data/lib/ui_bibz/ui/core/forms/files/file_field.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/numbers/formula_field.rb +10 -11
- data/lib/ui_bibz/ui/core/forms/numbers/number_field.rb +3 -4
- data/lib/ui_bibz/ui/core/forms/numbers/range_field.rb +3 -4
- data/lib/ui_bibz/ui/core/forms/selects/abstract_select.rb +9 -9
- data/lib/ui_bibz/ui/core/forms/selects/dropdown_select_field.rb +6 -7
- data/lib/ui_bibz/ui/core/forms/selects/multi_column_field.rb +9 -10
- data/lib/ui_bibz/ui/core/forms/selects/multi_select_field.rb +13 -14
- data/lib/ui_bibz/ui/core/forms/selects/select_field.rb +6 -7
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_addon.rb +4 -4
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_group.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_link.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_refresh.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_checkbox_field.rb +4 -4
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_dropdown.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_radio_field.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_switch_field.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/surround_field.rb +24 -25
- data/lib/ui_bibz/ui/core/forms/textareas/markdown_editor_field.rb +4 -5
- data/lib/ui_bibz/ui/core/forms/texts/auto_complete_field.rb +6 -7
- data/lib/ui_bibz/ui/core/forms/texts/text_field.rb +6 -6
- data/lib/ui_bibz/ui/core/icons/components/glyph_counter.rb +5 -6
- data/lib/ui_bibz/ui/core/icons/components/glyph_text.rb +5 -6
- data/lib/ui_bibz/ui/core/icons/glyph.rb +13 -14
- data/lib/ui_bibz/ui/core/icons/glyph_group.rb +16 -17
- data/lib/ui_bibz/ui/core/icons/star.rb +7 -9
- data/lib/ui_bibz/ui/core/layouts/col.rb +20 -21
- data/lib/ui_bibz/ui/core/layouts/container.rb +5 -6
- data/lib/ui_bibz/ui/core/layouts/row.rb +4 -5
- data/lib/ui_bibz/ui/core/lists/components/list.rb +19 -20
- data/lib/ui_bibz/ui/core/lists/components/list/list_body.rb +4 -5
- data/lib/ui_bibz/ui/core/lists/components/list/list_header.rb +5 -6
- data/lib/ui_bibz/ui/core/lists/list_group.rb +15 -16
- data/lib/ui_bibz/ui/core/navigations/breadcrumb.rb +5 -6
- data/lib/ui_bibz/ui/core/navigations/components/breadcrumb_link.rb +7 -8
- data/lib/ui_bibz/ui/core/navigations/components/nav_dropdown.rb +6 -7
- data/lib/ui_bibz/ui/core/navigations/components/nav_link.rb +12 -13
- data/lib/ui_bibz/ui/core/navigations/components/nav_link_link.rb +7 -8
- data/lib/ui_bibz/ui/core/navigations/components/nav_link_list.rb +4 -5
- data/lib/ui_bibz/ui/core/navigations/components/nav_link_span.rb +8 -9
- data/lib/ui_bibz/ui/core/navigations/components/nav_text.rb +8 -9
- data/lib/ui_bibz/ui/core/navigations/components/navbar_brand.rb +5 -6
- data/lib/ui_bibz/ui/core/navigations/components/navbar_form.rb +8 -8
- data/lib/ui_bibz/ui/core/navigations/components/navbar_nav.rb +6 -7
- data/lib/ui_bibz/ui/core/navigations/components/navbar_text.rb +6 -7
- data/lib/ui_bibz/ui/core/navigations/components/pagination_link.rb +5 -6
- data/lib/ui_bibz/ui/core/navigations/components/toolbar_form.rb +7 -7
- data/lib/ui_bibz/ui/core/navigations/link.rb +6 -7
- data/lib/ui_bibz/ui/core/navigations/nav.rb +20 -27
- data/lib/ui_bibz/ui/core/navigations/navbar.rb +23 -24
- data/lib/ui_bibz/ui/core/navigations/pagination.rb +9 -12
- data/lib/ui_bibz/ui/core/navigations/tab_group.rb +7 -8
- data/lib/ui_bibz/ui/core/navigations/toolbar.rb +14 -15
- data/lib/ui_bibz/ui/core/notifications/alert.rb +11 -12
- data/lib/ui_bibz/ui/core/notifications/badge.rb +7 -8
- data/lib/ui_bibz/ui/core/notifications/components/alert_body.rb +5 -6
- data/lib/ui_bibz/ui/core/notifications/components/alert_header.rb +8 -9
- data/lib/ui_bibz/ui/core/notifications/components/bar.rb +11 -12
- data/lib/ui_bibz/ui/core/notifications/components/toast_body.rb +5 -6
- data/lib/ui_bibz/ui/core/notifications/components/toast_header.rb +7 -8
- data/lib/ui_bibz/ui/core/notifications/progress_bar.rb +12 -13
- data/lib/ui_bibz/ui/core/notifications/spinner.rb +11 -12
- data/lib/ui_bibz/ui/core/notifications/toast.rb +9 -10
- data/lib/ui_bibz/ui/core/windows/components/modal_body.rb +4 -5
- data/lib/ui_bibz/ui/core/windows/components/modal_footer.rb +4 -5
- data/lib/ui_bibz/ui/core/windows/components/modal_header.rb +6 -7
- data/lib/ui_bibz/ui/core/windows/modal.rb +8 -9
- data/lib/ui_bibz/ui/extensions/core/component/glyph_extension.rb +13 -15
- data/lib/ui_bibz/ui/extensions/core/component/klass_extension.rb +9 -10
- data/lib/ui_bibz/ui/extensions/core/component/popover_extension.rb +22 -21
- data/lib/ui_bibz/ui/extensions/core/forms/connect_extension.rb +9 -9
- data/lib/ui_bibz/ui/extensions/core/forms/surround_extension.rb +8 -10
- data/lib/ui_bibz/ui/ux/containers/components/panel_body.rb +5 -6
- data/lib/ui_bibz/ui/ux/containers/components/panel_column.rb +6 -7
- data/lib/ui_bibz/ui/ux/containers/components/panel_deck.rb +6 -7
- data/lib/ui_bibz/ui/ux/containers/components/panel_footer.rb +5 -6
- data/lib/ui_bibz/ui/ux/containers/components/panel_group.rb +6 -7
- data/lib/ui_bibz/ui/ux/containers/components/panel_header.rb +12 -12
- data/lib/ui_bibz/ui/ux/containers/components/panel_tab_group.rb +5 -6
- data/lib/ui_bibz/ui/ux/containers/components/panel_toolbar.rb +5 -6
- data/lib/ui_bibz/ui/ux/containers/panel.rb +21 -22
- data/lib/ui_bibz/ui/ux/tables/components/actions.rb +14 -16
- data/lib/ui_bibz/ui/ux/tables/components/as.rb +8 -9
- data/lib/ui_bibz/ui/ux/tables/components/column.rb +4 -4
- data/lib/ui_bibz/ui/ux/tables/components/columns.rb +4 -3
- data/lib/ui_bibz/ui/ux/tables/components/store.rb +5 -7
- data/lib/ui_bibz/ui/ux/tables/components/thead.rb +5 -6
- data/lib/ui_bibz/ui/ux/tables/extensions/actionable.rb +24 -23
- data/lib/ui_bibz/ui/ux/tables/extensions/paginable.rb +8 -10
- data/lib/ui_bibz/ui/ux/tables/extensions/searchable.rb +9 -9
- data/lib/ui_bibz/ui/ux/tables/extensions/sortable.rb +26 -26
- data/lib/ui_bibz/ui/ux/tables/table.rb +32 -39
- data/lib/ui_bibz/ui/ux/tables/table_card.rb +18 -26
- data/lib/ui_bibz/ui/ux/tables/table_pagination.rb +15 -18
- data/lib/ui_bibz/ui/ux/tables/table_pagination_per_page.rb +15 -18
- data/lib/ui_bibz/ui/ux/tables/table_search_field.rb +19 -23
- data/lib/ui_bibz/utils/glyph_changer.rb +13 -13
- data/lib/ui_bibz/utils/internationalization.rb +10 -7
- data/lib/ui_bibz/utils/screwdriver.rb +7 -5
- data/test/dummy/Rakefile +3 -1
- data/test/dummy/app/controllers/application_controller.rb +2 -0
- data/test/dummy/app/controllers/users_controller.rb +15 -14
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/models/application_record.rb +2 -0
- data/test/dummy/app/models/continent.rb +2 -0
- data/test/dummy/app/models/country.rb +2 -0
- data/test/dummy/app/models/user.rb +2 -0
- data/test/dummy/bin/bundle +3 -1
- data/test/dummy/bin/rails +3 -1
- data/test/dummy/bin/rake +2 -0
- data/test/dummy/bin/setup +10 -8
- data/test/dummy/config.ru +2 -0
- data/test/dummy/config/application.rb +5 -4
- data/test/dummy/config/boot.rb +4 -2
- data/test/dummy/config/environment.rb +3 -1
- data/test/dummy/config/environments/development.rb +2 -0
- data/test/dummy/config/environments/production.rb +2 -0
- data/test/dummy/config/environments/test.rb +2 -0
- data/test/dummy/config/initializers/assets.rb +2 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +2 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +2 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +2 -0
- data/test/dummy/config/initializers/inflections.rb +2 -0
- data/test/dummy/config/initializers/mime_types.rb +2 -0
- data/test/dummy/config/initializers/session_store.rb +2 -0
- data/test/dummy/config/initializers/simple_form_bootstrap.rb +3 -1
- data/test/dummy/config/initializers/ui_bibz.rb +1 -1
- data/test/dummy/config/initializers/wrap_parameters.rb +2 -0
- data/test/dummy/config/routes.rb +2 -0
- data/test/dummy/db/migrate/20150123191805_create_users.rb +2 -0
- data/test/dummy/db/migrate/20170309084406_continents.rb +2 -0
- data/test/dummy/db/migrate/20170309084453_countries.rb +2 -0
- data/test/dummy/db/schema.rb +22 -22
- data/test/dummy/test/models/user_test.rb +2 -0
- data/test/factories/user.rb +6 -4
- data/test/simple_form_test.rb +28 -34
- data/test/store_test.rb +10 -9
- data/test/support/factory_bot.rb +9 -5
- data/test/test_helper.rb +8 -8
- data/test/ui/core/boxes/card_test.rb +28 -26
- data/test/ui/core/boxes/jumbotron_test.rb +4 -3
- data/test/ui/core/component_test.rb +4 -4
- data/test/ui/core/forms/buttons/button_group_test.rb +8 -7
- data/test/ui/core/forms/buttons/button_link_test.rb +16 -14
- data/test/ui/core/forms/buttons/button_refresh_test.rb +5 -5
- data/test/ui/core/forms/buttons/button_test.rb +25 -23
- data/test/ui/core/forms/choices/box_switch_field_test.rb +62 -62
- data/test/ui/core/forms/choices/checkbox_field_test.rb +7 -6
- data/test/ui/core/forms/choices/choice_group_test.rb +6 -5
- data/test/ui/core/forms/choices/radio_field_test.rb +7 -6
- data/test/ui/core/forms/dates/date_picker_field_test.rb +12 -11
- data/test/ui/core/forms/dropdowns/dropdown_test.rb +12 -11
- data/test/ui/core/forms/files/text_field_test.rb +7 -6
- data/test/ui/core/forms/numbers/formula_field_test.rb +7 -6
- data/test/ui/core/forms/numbers/number_field_test.rb +12 -11
- data/test/ui/core/forms/numbers/range_field_test.rb +12 -11
- data/test/ui/core/forms/selects/dropdown_select_field_test.rb +61 -60
- data/test/ui/core/forms/selects/multi_column_field_test.rb +14 -13
- data/test/ui/core/forms/selects/multi_select_field_test.rb +19 -18
- data/test/ui/core/forms/selects/select_field_test.rb +13 -13
- data/test/ui/core/forms/surrounds/surround_field_test.rb +54 -54
- data/test/ui/core/forms/textareas/markdown_editor_field_test.rb +7 -6
- data/test/ui/core/forms/texts/auto_complete_field_test.rb +8 -7
- data/test/ui/core/forms/texts/text_field_test.rb +17 -16
- data/test/ui/core/icons/glyph_group_test.rb +8 -8
- data/test/ui/core/icons/glyph_test.rb +4 -4
- data/test/ui/core/icons/star_test.rb +37 -36
- data/test/ui/core/layouts/col_test.rb +11 -10
- data/test/ui/core/layouts/container_test.rb +3 -2
- data/test/ui/core/layouts/row_test.rb +4 -3
- data/test/ui/core/lists/list_group_test.rb +7 -6
- data/test/ui/core/navigations/breadcrumb_test.rb +12 -14
- data/test/ui/core/navigations/link_test.rb +9 -8
- data/test/ui/core/navigations/nav_test.rb +22 -21
- data/test/ui/core/navigations/navbar_test.rb +11 -11
- data/test/ui/core/navigations/pagination_test.rb +14 -13
- data/test/ui/core/navigations/tab_group_test.rb +22 -21
- data/test/ui/core/navigations/toolbar_test.rb +4 -3
- data/test/ui/core/notifications/alert_test.rb +5 -4
- data/test/ui/core/notifications/badge_test.rb +5 -4
- data/test/ui/core/notifications/progress_bar_test.rb +13 -13
- data/test/ui/core/notifications/spinner_test.rb +9 -8
- data/test/ui/core/notifications/toast_test.rb +3 -2
- data/test/ui/core/windows/modal_test.rb +3 -2
- data/test/ui/ux/containers/panel_test.rb +7 -6
- data/test/ui/ux/tables/table_test.rb +33 -33
- data/test/ui_bibz_test.rb +3 -1
- data/ui_bibz.gemspec +32 -28
- metadata +73 -42
data/test/support/factory_bot.rb
CHANGED
@@ -1,9 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'factory_bot'
|
2
4
|
FactoryBot.find_definitions
|
3
5
|
# for Spec expectation style
|
4
|
-
#class MiniTest::Test
|
5
|
-
|
6
|
-
#end
|
7
|
-
|
8
|
-
|
6
|
+
# class MiniTest::Test
|
7
|
+
# include FactoryGirl::Syntax::Methods
|
8
|
+
# end
|
9
|
+
module ActiveSupport
|
10
|
+
class TestCase
|
11
|
+
include FactoryBot::Syntax::Methods
|
12
|
+
end
|
9
13
|
end
|
data/test/test_helper.rb
CHANGED
@@ -1,22 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# Code climate
|
2
4
|
require 'simplecov'
|
3
5
|
SimpleCov.start 'rails'
|
4
6
|
|
5
7
|
# Configure Rails Environment
|
6
|
-
ENV[
|
8
|
+
ENV['RAILS_ENV'] = 'test'
|
7
9
|
|
8
|
-
require File.expand_path(
|
9
|
-
ActiveRecord::Migrator.migrations_paths = [File.expand_path(
|
10
|
-
require
|
10
|
+
require File.expand_path('../test/dummy/config/environment.rb', __dir__)
|
11
|
+
ActiveRecord::Migrator.migrations_paths = [File.expand_path('../test/dummy/db/migrate', __dir__)]
|
12
|
+
require 'rails/test_help'
|
11
13
|
|
12
14
|
# Filter out Minitest backtrace while allowing backtrace from other libraries
|
13
15
|
# to be shown.
|
14
16
|
Minitest.backtrace_filter = Minitest::BacktraceFilter.new
|
15
17
|
|
16
18
|
# Load support files
|
17
|
-
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
19
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].sort.each { |f| require f }
|
18
20
|
|
19
21
|
# Load fixtures from the engine
|
20
|
-
if ActiveSupport::TestCase.respond_to?(:fixture_path=)
|
21
|
-
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
|
22
|
-
end
|
22
|
+
ActiveSupport::TestCase.fixture_path = File.expand_path('fixtures', __dir__) if ActiveSupport::TestCase.respond_to?(:fixture_path=)
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'test_helper'
|
2
4
|
|
3
5
|
class CardTest < ActionView::TestCase
|
@@ -7,14 +9,14 @@ class CardTest < ActionView::TestCase
|
|
7
9
|
actual = ui_card do
|
8
10
|
'test'
|
9
11
|
end
|
10
|
-
expected =
|
12
|
+
expected = '<div class="card"><div class="card-body">test</div></div>'
|
11
13
|
|
12
14
|
assert_equal expected, actual
|
13
15
|
end
|
14
16
|
|
15
17
|
test 'card status' do
|
16
18
|
actual = ui_card 'test', status: :primary
|
17
|
-
expected =
|
19
|
+
expected = '<div class="bg-primary text-white card"><div class="card-body">test</div></div>'
|
18
20
|
|
19
21
|
assert_equal expected, actual
|
20
22
|
end
|
@@ -25,7 +27,7 @@ class CardTest < ActionView::TestCase
|
|
25
27
|
c.body 'header'
|
26
28
|
c.footer 'header'
|
27
29
|
end
|
28
|
-
expected =
|
30
|
+
expected = '<div class="border-success text-white card bg-transparent"><div class="card-header text-success border-success bg-transparent">header</div><div class="card-body">test</div><div class="card-body text-success">header</div><div class="card-footer text-success border-success bg-transparent">header</div></div>'
|
29
31
|
|
30
32
|
assert_equal expected, actual
|
31
33
|
end
|
@@ -34,19 +36,19 @@ class CardTest < ActionView::TestCase
|
|
34
36
|
actual = ui_card(tap: true) do |c|
|
35
37
|
c.image 'image.svg'
|
36
38
|
c.body do
|
37
|
-
|
39
|
+
'test'
|
38
40
|
end
|
39
41
|
c.list_group do |lg|
|
40
|
-
lg.list
|
41
|
-
lg.list
|
42
|
-
lg.list
|
42
|
+
lg.list 'Cras justo odio'
|
43
|
+
lg.list 'Dapibas ac facilisis in'
|
44
|
+
lg.list 'vestibulum at eros'
|
43
45
|
end
|
44
46
|
c.body do
|
45
|
-
link_to
|
46
|
-
link_to
|
47
|
+
link_to 'Card link', '#', class: 'card-link'
|
48
|
+
link_to 'Card link', '#', class: 'card-link'
|
47
49
|
end
|
48
50
|
end
|
49
|
-
expected =
|
51
|
+
expected = '<div class="card"><img class="card-img-top" src="/images/image.svg" /><div class="card-body">test</div><ul class="list-group-flush list-group"><li class="list-group-item">Cras justo odio</li><li class="list-group-item">Dapibas ac facilisis in</li><li class="list-group-item">vestibulum at eros</li></ul><div class="card-body"><a class="card-link" href="#">Card link</a></div></div>'
|
50
52
|
|
51
53
|
assert_equal expected, actual
|
52
54
|
end
|
@@ -57,7 +59,7 @@ class CardTest < ActionView::TestCase
|
|
57
59
|
p.body 'state'
|
58
60
|
p.footer 'state'
|
59
61
|
end
|
60
|
-
expected =
|
62
|
+
expected = '<div class="state card"><div class="card-header"><i class="glyph fas fa-eye"></i> state</div><div class="card-body">state</div><div class="card-footer">state</div></div>'
|
61
63
|
|
62
64
|
assert_equal expected, actual
|
63
65
|
end
|
@@ -65,12 +67,12 @@ class CardTest < ActionView::TestCase
|
|
65
67
|
test 'position' do
|
66
68
|
actual = ui_card tap: true, text: { position: :right, size: :md } do |p|
|
67
69
|
p.body tap: true do |b|
|
68
|
-
b.title
|
69
|
-
b.text
|
70
|
-
b.link
|
70
|
+
b.title 'Special title treatment'
|
71
|
+
b.text 'With supporting text below as a natural lead-in to additional content.'
|
72
|
+
b.link 'Go somewhere', url: '#go-somewhere', class: 'btn btn-primary'
|
71
73
|
end
|
72
74
|
end
|
73
|
-
expected =
|
75
|
+
expected = '<div class="card text-md-right"><div class="card-body"><h4 class="card-title">Special title treatment</h4><p class="card-text">With supporting text below as a natural lead-in to additional content.</p><a class="btn btn-primary card-link" href="#go-somewhere">Go somewhere</a></div></div>'
|
74
76
|
|
75
77
|
assert_equal expected, actual
|
76
78
|
end
|
@@ -81,7 +83,7 @@ class CardTest < ActionView::TestCase
|
|
81
83
|
cg.card 'test 2', body: true
|
82
84
|
cg.card 'test 3', body: true
|
83
85
|
end
|
84
|
-
expected =
|
86
|
+
expected = '<div class="card-group"><div class="card"><div class="card-body">test 1</div></div><div class="card"><div class="card-body">test 2</div></div><div class="card"><div class="card-body">test 3</div></div></div>'
|
85
87
|
|
86
88
|
assert_equal expected, actual
|
87
89
|
end
|
@@ -92,7 +94,7 @@ class CardTest < ActionView::TestCase
|
|
92
94
|
cg.card 'test 2', body: true
|
93
95
|
cg.card 'test 3', body: true
|
94
96
|
end
|
95
|
-
expected =
|
97
|
+
expected = '<div class="card-deck-wrapper"><div class="card-deck"><div class="card"><div class="card-body">test 1</div></div><div class="card"><div class="card-body">test 2</div></div><div class="card"><div class="card-body">test 3</div></div></div></div>'
|
96
98
|
assert_equal expected, actual
|
97
99
|
end
|
98
100
|
|
@@ -102,7 +104,7 @@ class CardTest < ActionView::TestCase
|
|
102
104
|
cg.card 'test 2', body: true
|
103
105
|
cg.card 'test 3', body: true
|
104
106
|
end
|
105
|
-
expected =
|
107
|
+
expected = '<div class="card-columns"><div class="card"><div class="card-body">test 1</div></div><div class="card"><div class="card-body">test 2</div></div><div class="card"><div class="card-body">test 3</div></div></div>'
|
106
108
|
|
107
109
|
assert_equal expected, actual
|
108
110
|
end
|
@@ -110,12 +112,12 @@ class CardTest < ActionView::TestCase
|
|
110
112
|
test 'card list group' do
|
111
113
|
actual = ui_card tap: true do |c|
|
112
114
|
c.list_group do |lg|
|
113
|
-
lg.list
|
114
|
-
lg.list
|
115
|
-
lg.list
|
115
|
+
lg.list 'list 1'
|
116
|
+
lg.list 'list 2'
|
117
|
+
lg.list 'list 3'
|
116
118
|
end
|
117
119
|
end
|
118
|
-
expected =
|
120
|
+
expected = '<div class="card"><ul class="list-group-flush list-group"><li class="list-group-item">list 1</li><li class="list-group-item">list 2</li><li class="list-group-item">list 3</li></ul></div>'
|
119
121
|
|
120
122
|
assert_equal expected, actual
|
121
123
|
end
|
@@ -123,12 +125,12 @@ class CardTest < ActionView::TestCase
|
|
123
125
|
test 'card body parameters' do
|
124
126
|
actual = ui_card tap: true do |c|
|
125
127
|
c.body tap: true do |b|
|
126
|
-
b.title
|
127
|
-
b.text
|
128
|
+
b.title 'title'
|
129
|
+
b.text 'text'
|
128
130
|
b.link 'link', url: '#'
|
129
131
|
end
|
130
132
|
end
|
131
|
-
expected =
|
133
|
+
expected = '<div class="card"><div class="card-body"><h4 class="card-title">title</h4><p class="card-text">text</p><a class="card-link" href="#">link</a></div></div>'
|
132
134
|
|
133
135
|
assert_equal expected, actual
|
134
136
|
end
|
@@ -142,7 +144,7 @@ class CardTest < ActionView::TestCase
|
|
142
144
|
end
|
143
145
|
end
|
144
146
|
end
|
145
|
-
expected =
|
147
|
+
expected = '<div class="card"><div class="card-header"><ul class="nav nav-tabs card-header-tabs"><li class="nav-item"><a class="nav-link" data-toggle="tab" role="tab" href="#link1">link1</a></li><li class="nav-item"><a class="nav-link" data-toggle="tab" role="tab" href="#link2">link2</a></li></ul></div></div>'
|
146
148
|
|
147
149
|
assert_equal expected, actual
|
148
150
|
end
|
@@ -1,4 +1,5 @@
|
|
1
|
-
#
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
2
3
|
require 'test_helper'
|
3
4
|
|
4
5
|
class JumbotronTest < ActionView::TestCase
|
@@ -6,14 +7,14 @@ class JumbotronTest < ActionView::TestCase
|
|
6
7
|
|
7
8
|
test 'jumbotron with full_width' do
|
8
9
|
actual = ui_jumbotron 'state', full_width: true
|
9
|
-
expected =
|
10
|
+
expected = '<div class="jumbotron">state</div>'
|
10
11
|
|
11
12
|
assert_equal expected, actual
|
12
13
|
end
|
13
14
|
|
14
15
|
test 'jumbotron' do
|
15
16
|
actual = ui_jumbotron 'state'
|
16
|
-
expected =
|
17
|
+
expected = '<div class="jumbotron">state</div>'
|
17
18
|
|
18
19
|
assert_equal expected, actual
|
19
20
|
end
|
@@ -1,7 +1,8 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'test_helper'
|
2
4
|
|
3
5
|
class ComponentTest < ActionView::TestCase
|
4
|
-
|
5
6
|
test 'create complex component' do
|
6
7
|
actual = UiBibz::Ui::Core::Component.new('New component', { state: :active, glyph: 'add' }, { class: 'new-class' }).render
|
7
8
|
expected = '<i class="glyph fas fa-add"></i> New component'
|
@@ -11,7 +12,7 @@ class ComponentTest < ActionView::TestCase
|
|
11
12
|
|
12
13
|
test 'create complex component with block' do
|
13
14
|
actual = UiBibz::Ui::Core::Component.new(state: :active) do
|
14
|
-
|
15
|
+
'New content'
|
15
16
|
end.render
|
16
17
|
expected = 'New content'
|
17
18
|
|
@@ -20,9 +21,8 @@ class ComponentTest < ActionView::TestCase
|
|
20
21
|
|
21
22
|
test 'create component without text and glyph' do
|
22
23
|
actual = UiBibz::Ui::Core::Component.new('My text', { glyph: 'diamond', text: false }).render
|
23
|
-
expected =
|
24
|
+
expected = '<i class="glyph fas fa-diamond"></i>'
|
24
25
|
|
25
26
|
assert_equal expected, actual
|
26
27
|
end
|
27
|
-
|
28
28
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'test_helper'
|
2
4
|
|
3
5
|
class ButtonGroupTest < ActionView::TestCase
|
@@ -7,7 +9,7 @@ class ButtonGroupTest < ActionView::TestCase
|
|
7
9
|
actual = ui_button_group do |bg|
|
8
10
|
bg.button 'state'
|
9
11
|
end
|
10
|
-
expected =
|
12
|
+
expected = '<div class="btn-group" role="group"><button class="btn-secondary btn">state</button></div>'
|
11
13
|
|
12
14
|
assert_equal expected, actual
|
13
15
|
end
|
@@ -16,7 +18,7 @@ class ButtonGroupTest < ActionView::TestCase
|
|
16
18
|
actual = ui_button_group(position: :vertical) do |bg|
|
17
19
|
bg.button 'state'
|
18
20
|
end
|
19
|
-
expected =
|
21
|
+
expected = '<div class="btn-group-vertical" role="group"><button class="btn-secondary btn">state</button></div>'
|
20
22
|
|
21
23
|
assert_equal expected, actual
|
22
24
|
end
|
@@ -25,7 +27,7 @@ class ButtonGroupTest < ActionView::TestCase
|
|
25
27
|
actual = ui_button_group(status: :primary) do |bg|
|
26
28
|
bg.button 'state'
|
27
29
|
end
|
28
|
-
expected =
|
30
|
+
expected = '<div class="btn-group" role="group"><button class="btn-primary btn">state</button></div>'
|
29
31
|
|
30
32
|
assert_equal expected, actual
|
31
33
|
end
|
@@ -34,20 +36,19 @@ class ButtonGroupTest < ActionView::TestCase
|
|
34
36
|
actual = ui_button_group(size: :sm) do |bg|
|
35
37
|
bg.button 'state'
|
36
38
|
end
|
37
|
-
expected =
|
39
|
+
expected = '<div class="btn-group btn-group-sm" role="group"><button class="btn-secondary btn btn-sm">state</button></div>'
|
38
40
|
|
39
41
|
assert_equal expected, actual
|
40
42
|
end
|
41
43
|
|
42
44
|
test 'button group with dropdown' do
|
43
45
|
actual = ui_button_group do |bg|
|
44
|
-
bg.dropdown(
|
46
|
+
bg.dropdown('Dropdown', { type: :dropup, status: :success }, { id: 'dropdown-test' }) do |d|
|
45
47
|
d.link 'Link 1', url: '#link1', glyph: 'eye'
|
46
48
|
end
|
47
49
|
end
|
48
|
-
expected =
|
50
|
+
expected = '<div class="btn-group" role="group"><div id="dropdown-test" class="dropup btn-group"><button class="btn btn-success dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" id="dropdown-test">Dropdown</button><div class="dropdown-menu" arial-labelledby="dropdown-test"><a class="dropdown-item" href="#link1"><i class="glyph fas fa-eye"></i> Link 1</a></div></div></div>'
|
49
51
|
|
50
52
|
assert_equal expected, actual
|
51
53
|
end
|
52
|
-
|
53
54
|
end
|
@@ -1,81 +1,83 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'test_helper'
|
2
4
|
|
3
5
|
class ButtonLinkTest < ActionView::TestCase
|
4
6
|
include UiBibz::Helpers::Ui::CoreHelper
|
5
7
|
|
6
|
-
test
|
8
|
+
test 'button_link' do
|
7
9
|
actual = ui_button_link('state')
|
8
|
-
expected =
|
10
|
+
expected = '<a class="btn-secondary btn" role="button" href="#">state</a>'
|
9
11
|
|
10
12
|
assert_equal expected, actual
|
11
13
|
end
|
12
14
|
|
13
|
-
test
|
15
|
+
test 'button_link with url' do
|
14
16
|
actual = ui_button_link('state', url: '#new_url')
|
15
|
-
expected =
|
17
|
+
expected = '<a class="btn-secondary btn" role="button" href="#new_url">state</a>'
|
16
18
|
|
17
19
|
assert_equal expected, actual
|
18
20
|
end
|
19
21
|
|
20
|
-
test
|
22
|
+
test 'button_link with status' do
|
21
23
|
actual = ui_button_link('state', status: :success)
|
22
|
-
expected =
|
24
|
+
expected = '<a class="btn-success btn" role="button" href="#">state</a>'
|
23
25
|
|
24
26
|
assert_equal expected, actual
|
25
27
|
end
|
26
28
|
|
27
29
|
test 'button_link outline' do
|
28
30
|
actual = ui_button_link('state', status: :success, outline: true)
|
29
|
-
expected =
|
31
|
+
expected = '<a class="btn-outline-success btn" role="button" href="#">state</a>'
|
30
32
|
|
31
33
|
assert_equal expected, actual
|
32
34
|
end
|
33
35
|
|
34
36
|
test 'button_link disabled' do
|
35
37
|
actual = ui_button_link('state', state: :disabled)
|
36
|
-
expected =
|
38
|
+
expected = '<a class="disabled btn-secondary btn" disabled="disabled" role="button" href="#">state</a>'
|
37
39
|
|
38
40
|
assert_equal expected, actual
|
39
41
|
end
|
40
42
|
|
41
43
|
test 'button_link active' do
|
42
44
|
actual = ui_button_link('state', state: :active)
|
43
|
-
expected =
|
45
|
+
expected = '<a class="active btn-secondary btn" aria-pressed="true" role="button" href="#">state</a>'
|
44
46
|
|
45
47
|
assert_equal expected, actual
|
46
48
|
end
|
47
49
|
|
48
50
|
test 'button_link badge' do
|
49
51
|
actual = ui_button_link('state', badge: 2)
|
50
|
-
expected =
|
52
|
+
expected = '<a class="btn-secondary btn" role="button" href="#">state<span class="badge-secondary badge">2</span></a>'
|
51
53
|
|
52
54
|
assert_equal expected, actual
|
53
55
|
end
|
54
56
|
|
55
57
|
test 'button_link block' do
|
56
58
|
actual = ui_button_link('state', type: :block)
|
57
|
-
expected =
|
59
|
+
expected = '<a class="btn-secondary btn btn-block" role="button" href="#">state</a>'
|
58
60
|
|
59
61
|
assert_equal expected, actual
|
60
62
|
end
|
61
63
|
|
62
64
|
test 'button_link size' do
|
63
65
|
actual = ui_button_link('state', size: :sm)
|
64
|
-
expected =
|
66
|
+
expected = '<a class="btn-secondary btn btn-sm" role="button" href="#">state</a>'
|
65
67
|
|
66
68
|
assert_equal expected, actual
|
67
69
|
end
|
68
70
|
|
69
71
|
test 'button_link toggle' do
|
70
72
|
actual = ui_button_link('state', toggle: true)
|
71
|
-
expected =
|
73
|
+
expected = '<a class="btn-secondary btn" data-toggle="button" aria-pressed="false" autocomplete="off" role="button" href="#">state</a>'
|
72
74
|
|
73
75
|
assert_equal expected, actual
|
74
76
|
end
|
75
77
|
|
76
78
|
test 'button_link glyph' do
|
77
79
|
actual = ui_button_link('state', glyph: 'diamond')
|
78
|
-
expected =
|
80
|
+
expected = '<a class="btn-secondary btn" role="button" href="#"><i class="glyph fas fa-diamond"></i> state</a>'
|
79
81
|
|
80
82
|
assert_equal expected, actual
|
81
83
|
end
|
@@ -1,12 +1,12 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'test_helper'
|
2
4
|
|
3
5
|
class ButtonRefreshTest < ActionView::TestCase
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
expected = "<span data-connect=\"{"events":"click","mode":"remote","target":{"selector":"","url":"/","data":[]}}\" class=\"btn-success ui-bibz-connect btn input-refresh-button\"><i class=\"glyph fas fa-sync-alt\"></i> state</span>"
|
6
|
+
test 'button' do
|
7
|
+
actual = UiBibz::Ui::Core::Forms::Buttons::ButtonRefresh.new('state', status: :success, connect: { target: { url: '/' } }).render
|
8
|
+
expected = '<span data-connect="{"events":"click","mode":"remote","target":{"selector":"","url":"/","data":[]}}" class="btn-success ui-bibz-connect btn input-refresh-button"><i class="glyph fas fa-sync-alt"></i> state</span>'
|
8
9
|
|
9
10
|
assert_equal expected, actual
|
10
11
|
end
|
11
|
-
|
12
12
|
end
|
@@ -1,116 +1,118 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'test_helper'
|
2
4
|
|
3
5
|
class ButtonTest < ActionView::TestCase
|
4
6
|
include UiBibz::Helpers::Ui::CoreHelper
|
5
7
|
|
6
|
-
test
|
8
|
+
test 'button' do
|
7
9
|
actual = ui_button('state')
|
8
|
-
expected =
|
10
|
+
expected = '<button class="btn-secondary btn">state</button>'
|
9
11
|
|
10
12
|
assert_equal expected, actual
|
11
13
|
end
|
12
14
|
|
13
|
-
test
|
15
|
+
test 'button with status' do
|
14
16
|
actual = ui_button('state', status: :success)
|
15
|
-
expected =
|
17
|
+
expected = '<button class="btn-success btn">state</button>'
|
16
18
|
|
17
19
|
assert_equal expected, actual
|
18
20
|
end
|
19
21
|
|
20
22
|
test 'button outline' do
|
21
23
|
actual = ui_button('state', status: :success, outline: true)
|
22
|
-
expected =
|
24
|
+
expected = '<button class="btn-outline-success btn">state</button>'
|
23
25
|
|
24
26
|
assert_equal expected, actual
|
25
27
|
end
|
26
28
|
|
27
29
|
test 'button disabled' do
|
28
30
|
actual = ui_button('state', state: :disabled)
|
29
|
-
expected =
|
31
|
+
expected = '<button class="disabled btn-secondary btn" disabled="disabled">state</button>'
|
30
32
|
|
31
33
|
assert_equal expected, actual
|
32
34
|
end
|
33
35
|
|
34
36
|
test 'button active' do
|
35
37
|
actual = ui_button('state', state: :active)
|
36
|
-
expected =
|
38
|
+
expected = '<button class="active btn-secondary btn" aria-pressed="true">state</button>'
|
37
39
|
|
38
40
|
assert_equal expected, actual
|
39
41
|
end
|
40
42
|
|
41
43
|
test 'button badge' do
|
42
44
|
actual = ui_button('state', badge: 2)
|
43
|
-
expected =
|
45
|
+
expected = '<button class="btn-secondary btn">state<span class="badge-secondary badge">2</span></button>'
|
44
46
|
|
45
47
|
assert_equal expected, actual
|
46
48
|
end
|
47
49
|
|
48
50
|
test 'button block' do
|
49
51
|
actual = ui_button('state', type: :block)
|
50
|
-
expected =
|
52
|
+
expected = '<button class="btn-secondary btn btn-block">state</button>'
|
51
53
|
|
52
54
|
assert_equal expected, actual
|
53
55
|
end
|
54
56
|
|
55
57
|
test 'button size' do
|
56
58
|
actual = ui_button('state', size: :sm)
|
57
|
-
expected =
|
59
|
+
expected = '<button class="btn-secondary btn btn-sm">state</button>'
|
58
60
|
|
59
61
|
assert_equal expected, actual
|
60
62
|
end
|
61
63
|
|
62
64
|
test 'button toggle' do
|
63
65
|
actual = ui_button('state', toggle: true)
|
64
|
-
expected =
|
66
|
+
expected = '<button class="btn-secondary btn" data-toggle="button" aria-pressed="false" autocomplete="off">state</button>'
|
65
67
|
|
66
68
|
assert_equal expected, actual
|
67
69
|
end
|
68
70
|
|
69
71
|
test 'button glyph' do
|
70
72
|
actual = ui_button('state', glyph: 'diamond')
|
71
|
-
expected =
|
73
|
+
expected = '<button class="btn-secondary btn"><i class="glyph fas fa-diamond"></i> state</button>'
|
72
74
|
|
73
75
|
assert_equal expected, actual
|
74
76
|
end
|
75
77
|
|
76
78
|
test 'button glyph without text' do
|
77
79
|
actual = ui_button('state', glyph: 'diamond', text: false)
|
78
|
-
expected =
|
80
|
+
expected = '<button class="btn-secondary btn without-text"><i class="glyph fas fa-diamond"></i></button>'
|
79
81
|
|
80
82
|
assert_equal expected, actual
|
81
83
|
end
|
82
84
|
|
83
85
|
test 'button with collapse' do
|
84
86
|
actual = ui_button('state', collapse: 'collapse-id')
|
85
|
-
expected =
|
87
|
+
expected = '<button class="btn-secondary btn" data-toggle="collapse" data-target="#collapse-id" aria-controls="collapse-id" aria-expanded="false">state</button>'
|
86
88
|
|
87
89
|
assert_equal expected, actual
|
88
90
|
end
|
89
91
|
|
90
|
-
test
|
92
|
+
test 'button with simple popover' do
|
91
93
|
actual = ui_button('My Button', popover: 'My popover')
|
92
|
-
expected =
|
94
|
+
expected = '<button data-toggle="popover" data-content="My popover" class="btn-secondary btn">My Button</button>'
|
93
95
|
|
94
96
|
assert_equal expected, actual
|
95
97
|
end
|
96
98
|
|
97
|
-
test
|
99
|
+
test 'button with complex popover' do
|
98
100
|
actual = ui_button('My Button', popover: { content: 'My popover', position: :left })
|
99
|
-
expected =
|
101
|
+
expected = '<button data-toggle="popover" data-content="My popover" data-placement="left" class="btn-secondary btn">My Button</button>'
|
100
102
|
|
101
103
|
assert_equal expected, actual
|
102
104
|
end
|
103
105
|
|
104
|
-
test
|
105
|
-
actual = ui_button('My Button', { tooltip:
|
106
|
-
expected =
|
106
|
+
test 'button with simple tooltip' do
|
107
|
+
actual = ui_button('My Button', { tooltip: 'My Button' }, { title: 'My tooltip' })
|
108
|
+
expected = '<button title="My tooltip" data-toggle="tooltip" data-title="My Button" class="btn-secondary btn">My Button</button>'
|
107
109
|
|
108
110
|
assert_equal expected, actual
|
109
111
|
end
|
110
112
|
|
111
|
-
test
|
113
|
+
test 'button with complex tooltip' do
|
112
114
|
actual = ui_button('My Button', tooltip: { title: 'My tooltip', position: :left })
|
113
|
-
expected =
|
115
|
+
expected = '<button data-toggle="tooltip" data-title="My tooltip" data-placement="left" class="btn-secondary btn">My Button</button>'
|
114
116
|
|
115
117
|
assert_equal expected, actual
|
116
118
|
end
|