Sha256: e6ae641279957fc52daf0222e69a1b52e329ca11e895fc59440b775c4ac2c93c

Contents?: true

Size: 817 Bytes

Versions: 5

Compression:

Stored size: 817 Bytes

Contents

# frozen_string_literal: true

require 'test_helper'
class LinkTest < ActionView::TestCase
  include UiBibz::Helpers::Ui::CoreHelper

  test 'Link' do
    actual = ui_link 'My link', url: '#link'
    expected = '<a href="#link">My link</a>'

    assert_equal expected, actual
  end

  test 'Link without text' do
    actual = ui_link 'My link', glyph: 'gem', text: false, url: '#link'
    expected = '<a href="#link"><i class="glyph fas fa-gem"></i><span class="empty-space"> </span></a>'

    assert_equal expected, actual
  end

  test 'Link with collapse option' do
    actual = ui_link 'My link', url: '#link', collapse: 'collapse-id'
    expected = '<a role="button" data-toggle="collapse" aria-controls="collapse-id" aria-expanded="false" href="#link">My link</a>'

    assert_equal expected, actual
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ui_bibz-3.0.0.alpha8 test/ui/core/navigations/link_test.rb
ui_bibz-3.0.0.alpha6 test/ui/core/navigations/link_test.rb
ui_bibz-3.0.0.alpha5 test/ui/core/navigations/link_test.rb
ui_bibz-3.0.0.alpha3 test/ui/core/navigations/link_test.rb
ui_bibz-3.0.0.alpha2 test/ui/core/navigations/link_test.rb