Sha256: 3bd7afb617e07fa40ce96dabd199e8f545c5629bda3c2927ee49afdad01f4cd8

Contents?: true

Size: 1.81 KB

Versions: 4

Compression:

Stored size: 1.81 KB

Contents

require File.expand_path(File.dirname(__FILE__) + '/../helpers.rb')

animation_context("a color variation", :color_variation, :from => Ray::Color.blue,
                  :to => Ray::Color.red) do
  setup { animation.start OpenStruct.new(:color => Ray::Color.green) }

  asserts_topic.kind_of Ray::Animation::ColorVariation
  asserts(:initial_value).equals Ray::Color.blue
  asserts(:variation).equals [255, 0, -255, 0]
  asserts(:attribute).equals :color
  asserts(:duration).equals 5

  context "reversed" do
    setup { -topic }

    asserts(:initial_value).equals Ray::Color.red
    asserts(:variation).equals [-255, 0, 255, 0]
    asserts(:attribute).equals :color
    asserts(:duration).equals 5
  end

  context "finished" do
    setup do
      topic = finished_animation.start(OpenStruct.new(:color => Ray::Color.green))
      topic.update
      topic
    end

    asserts("value of the target") { topic.target.color }.equals Ray::Color.red
  end
end

animation_context("a color variation using :of", :color_variation,
                  :of => [10, 50, 20, 30]) do
  setup { animation.start OpenStruct.new(:color => Ray::Color.green) }

  asserts_topic.kind_of Ray::Animation::ColorVariation
  asserts(:initial_value).nil
  asserts(:variation).equals [10, 50, 20, 30]
  asserts(:attribute).equals :color
  asserts(:duration).equals 5

  context "reversed" do
    setup { -topic }

    asserts(:initial_value).nil
    asserts(:variation).equals [-10, -50, -20, -30]
    asserts(:attribute).equals :color
    asserts(:duration).equals 5
  end

  context "finished" do
    setup do
      topic = finished_animation.start(OpenStruct.new(:color => Ray::Color.none))
      topic.update
      topic
    end

    asserts("value of the target") { topic.target.color }.
      equals Ray::Color.new(10, 50, 20, 30)
  end
end

run_tests if __FILE__ == $0

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ray-0.2.1 test/animation/color_variation_test.rb
ray-0.2.0 test/animation/color_variation_test.rb
ray-0.1.1 test/animation/color_variation_test.rb
ray-0.1.0 test/animation/color_variation_test.rb