Sha256: 6ffc79dcae1ce3beb2f7659a0936fa0d94a107c0a6f64f7cae6f4bdd0327526d
Contents?: true
Size: 1.92 KB
Versions: 4
Compression:
Stored size: 1.92 KB
Contents
# frozen_string_literal: true require 'test_helper' class ButtonGroupTest < ActionView::TestCase include UiBibz::Helpers::Ui::CoreHelper test 'button group' do actual = ui_button_group do |bg| bg.button 'state' end expected = '<div class="btn-group" role="group"><button class="btn-secondary btn">state</button></div>' assert_equal expected, actual end test 'button group vertical' do actual = ui_button_group(position: :vertical) do |bg| bg.button 'state' end expected = '<div class="btn-group-vertical" role="group"><button class="btn-secondary btn">state</button></div>' assert_equal expected, actual end test 'button group status' do actual = ui_button_group(status: :primary) do |bg| bg.button 'state' end expected = '<div class="btn-group" role="group"><button class="btn-primary btn">state</button></div>' assert_equal expected, actual end test 'button group size' do actual = ui_button_group(size: :sm) do |bg| bg.button 'state' end expected = '<div class="btn-group btn-group-sm" role="group"><button class="btn-secondary btn btn-sm">state</button></div>' assert_equal expected, actual end test 'button group with dropdown' do actual = ui_button_group do |bg| bg.dropdown('Dropdown', { position: :up, status: :success }, { id: 'dropdown-test' }) do |d| d.link 'Link 1', url: '#link1', glyph: 'eye' end end 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>" assert_equal expected, actual end end
Version data entries
4 entries across 4 versions & 1 rubygems