Sha256: a9815c8958d293dbf8be3681f4b1b8c9f6ecc4a05c4c613fadebffbc447f1043

Contents?: true

Size: 725 Bytes

Versions: 2

Compression:

Stored size: 725 Bytes

Contents

# coding: utf-8

require 'test_helper'

class Thinreports::Generator::PDF::TestParseColor < Minitest::Test
  include Thinreports::TestHelper

  class TestColorParser
    include Thinreports::Generator::PDF::ParseColor
  end

  def setup
    @parser = TestColorParser.new
  end

  def test_parse_color_with_hexcolor
    assert_equal @parser.parse_color('#ff0000'), 'ff0000'
    assert_equal @parser.parse_color('000000'), '000000'
  end

  def test_parse_color_with_colorname
    assert_equal @parser.parse_color('red'), 'ff0000'
  end

  def test_parse_color_with_colorname_raise_when_unknown_name_given
    assert_raises Thinreports::Errors::UnsupportedColorName do
      @parser.parse_color('whitesmoke')
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
thinreports-0.9.1 test/unit/generator/pdf/document/test_parse_color.rb
thinreports-0.9.0 test/unit/generator/pdf/document/test_parse_color.rb