1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
# Copyright (C) 2013 Ruby-GNOME2 Project Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
class ClutterColorTest < Test::Unit::TestCase
include ClutterTestUtils
def test_rgb
omit_if_clutter_color_hash_expect_arguments
assert_equal("#ff0000ff", Clutter::Color.rgb(255, 0, 0).to_s)
end
def test_rgba
omit_if_clutter_color_hash_expect_arguments
assert_equal("#ff00007f", Clutter::Color.rgb(255, 0, 0, 127).to_s)
end
def test_hls
omit_if_clutter_color_hash_expect_arguments
assert_equal("#20dfdfff", Clutter::Color.hls(180, 0.5, 0.75).to_s)
end
def test_hlsa
omit_if_clutter_color_hash_expect_arguments
assert_equal("#20dfdf7f", Clutter::Color.hls(180, 0.5, 0.75, 127).to_s)
end
def test_pixel
omit_if_clutter_color_hash_expect_arguments
assert_equal("#20dfdf7f", Clutter::Color.pixel(0x20dfdf7f).to_s)
end
def test_parse
omit_if_clutter_color_hash_expect_arguments
assert_equal("#20dfdf7f",
Clutter::Color.parse("rgba(32, 223, 223, 0.5)").to_s)
end
end
|