about summary refs log tree commit homepage
path: root/test
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2014-07-05 23:53:26 +0000
committerEric Wong <e@80x24.org>2014-07-05 23:53:26 +0000
commit3471463325be6c990b3abd18b4d34f723440d19a (patch)
tree988c3b4f6448ba1834b11319bcbde0ca17285809 /test
parent7a2d650592fae471fefdca70f686861dd49ac7ce (diff)
downloaddtas-3471463325be6c990b3abd18b4d34f723440d19a.tar.gz
This will not be needed after all.
Diffstat (limited to 'test')
-rw-r--r--test/test_fadefx.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/test_fadefx.rb b/test/test_fadefx.rb
deleted file mode 100644
index 5714b76..0000000
--- a/test/test_fadefx.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright (C) 2013-2014, Eric Wong <e@80x24.org> and all contributors
-# License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)
-require_relative 'helper'
-require 'dtas/fadefx'
-
-class TestFadeFX < Testcase
-  def test_fadefx
-    ffx = DTAS::FadeFX.new("fade=t1,t3.1;l4,t1")
-    assert_equal 't', ffx.out_prev.type
-    assert_equal 1, ffx.out_prev.len
-    assert_equal 't', ffx.in_main.type
-    assert_equal 3.1, ffx.in_main.len
-    assert_equal 'l', ffx.out_main.type
-    assert_equal 4, ffx.out_main.len
-    assert_equal 't', ffx.in_next.type
-    assert_equal 1, ffx.in_next.len
-  end
-end