class ClutterColorTest

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

Public Instance Methods

test_hls() click to toggle source
# File clutter/test/test-clutter-color.rb, line 30
def test_hls
  omit_if_clutter_color_hash_expect_arguments
  assert_equal("#20dfdfff", Clutter::Color.hls(180, 0.5, 0.75).to_s)
end
test_hlsa() click to toggle source
# File clutter/test/test-clutter-color.rb, line 35
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
test_parse() click to toggle source
# File clutter/test/test-clutter-color.rb, line 45
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
test_pixel() click to toggle source
# File clutter/test/test-clutter-color.rb, line 40
def test_pixel
  omit_if_clutter_color_hash_expect_arguments
  assert_equal("#20dfdf7f", Clutter::Color.pixel(0x20dfdf7f).to_s)
end
test_rgb() click to toggle source
# File clutter/test/test-clutter-color.rb, line 20
def test_rgb
  omit_if_clutter_color_hash_expect_arguments
  assert_equal("#ff0000ff", Clutter::Color.rgb(255, 0, 0).to_s)
end
test_rgba() click to toggle source
# File clutter/test/test-clutter-color.rb, line 25
def test_rgba
  omit_if_clutter_color_hash_expect_arguments
  assert_equal("#ff00007f", Clutter::Color.rgb(255, 0, 0, 127).to_s)
end