Sha256: f0c39f2525dac47beecd5767d6e134af432d3abfd788b34a6af5a86a11d592b0

Contents?: true

Size: 859 Bytes

Versions: 4

Compression:

Stored size: 859 Bytes

Contents

require File.dirname(__FILE__) + '/../liquid_helper'
include LiquidHelperMethods

module Redmineup
  class ColorsFilterTest < ActiveSupport::TestCase
    
    def setup
      @liquid_render = LiquidRender.new
    end

    def test_hex_color
      assert_match '#ff0000', @liquid_render.render("{{ 'red' | hex_color }}")
    end

    def test_darken_color
      assert_match '#000066', @liquid_render.render("{{ 'blue' | darken_color }}")
    end

    def test_lighten_color
      assert_match '#9999ff', @liquid_render.render("{{ 'blue' | lighten_color }}")
    end

    def test_contrasting_text_color
      assert_match '#9999ff', @liquid_render.render("{{ 'blue' | contrasting_text_color }}")
    end

    def test_convert_to_brightness_value
      assert_match '15', @liquid_render.render("{{ 'blue' | convert_to_brightness_value }}")
    end


  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
redmineup-1.0.5 test/liquid/filters/colors_filter_test.rb
redmineup-1.0.4 test/liquid/filters/colors_filter_test.rb
redmineup-1.0.3 test/liquid/filters/colors_filter_test.rb
redmineup-1.0.2 test/liquid/filters/colors_filter_test.rb