Sha256: 72aae706936399f12e79aaba6d09e6e4189d4f0e9117fcad7b5418cec1cc8fda

Contents?: true

Size: 941 Bytes

Versions: 7

Compression:

Stored size: 941 Bytes

Contents

require 'test_helper'

include UiBibz::Helpers
class GlyphTest < ActionView::TestCase

  test 'create glyph with a name' do
    actual   = UiBibz::Ui::Core::Glyph.new('add').render
    expected = '<i class="glyph fa fa-add"></i>'
    assert_equal expected, actual
  end

  test 'create glyph with hash' do
    actual   = UiBibz::Ui::Core::Glyph.new({ name: 'add', size: 3, type: 'li'}).render
    expected = '<i class="glyph fa fa-add fa-3x fa-li"></i>'
    assert_equal expected, actual
  end

  test 'create glyph with name and hash' do
    actual   = UiBibz::Ui::Core::Glyph.new('add', { size: 3, type: 'li' }).render
    expected = '<i class="glyph fa fa-add fa-3x fa-li"></i>'
    assert_equal expected, actual
  end

  test 'create glyph with label' do
    actual   = UiBibz::Ui::Core::Glyph.new('add', { label: 'Example' }).render
    expected = "<i class=\"glyph fa fa-add\"></i> Example"
    assert_equal expected, actual
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ui_bibz-2.0.0.alpha32 test/ui/glyph_test.rb
ui_bibz-2.0.0.alpha31 test/ui/glyph_test.rb
ui_bibz-2.0.0.alpha30 test/ui/glyph_test.rb
ui_bibz-2.0.0.alpha29 test/ui/glyph_test.rb
ui_bibz-2.0.0.alpha28 test/ui/glyph_test.rb
ui_bibz-2.0.0.alpha27 test/ui/glyph_test.rb
ui_bibz-2.0.0.alpha26 test/ui/glyph_test.rb