File: tc_dither.rb

package info (click to toggle)
libcaca 0.99.beta18-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,936 kB
  • sloc: ansic: 22,177; python: 2,316; cs: 1,213; cpp: 1,107; java: 916; objc: 836; makefile: 636; sh: 381; ruby: 193; asm: 65
file content (50 lines) | stat: -rw-r--r-- 1,302 bytes parent folder | download | duplicates (6)
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
require 'caca'

class TC_Canvas < Test::Unit::TestCase
    def test_create
	assert_nothing_raised {
            d = Caca::Dither.new(8, 32, 32, 32, 0, 0, 0, 0)
	}
    end
    def test_fail_create
	assert_raise(RuntimeError) {
            d = Caca::Dither.new(-1, 32, 32, 32, 0, 0, 0, 0)
	}
    end
    def test_set_palette
	assert_nothing_raised {
            d = Caca::Dither.new(8, 32, 32, 32, 0, 0, 0, 0)
            d.palette=[[0xfff, 0xfff, 0xfff, 0xfff]]*256
	}
    end
    def test_fail_set_palette
	assert_raise(ArgumentError) {
            d = Caca::Dither.new(8, 32, 32, 32, 0, 0, 0, 0)
            d.palette=[]
	}
    end
    def test_fail_set_palette2
	assert_raise(RuntimeError) {
            d = Caca::Dither.new(8, 32, 32, 32, 0, 0, 0, 0)
            d.palette=[[0xffff, 0, 0, 0]]*256
	}
    end
    def test_set_brightness
        assert_nothing_raised {
            d = Caca::Dither.new(8, 32, 32, 32, 0, 0, 0, 0)
            d.brightness=0.5
        }
    end
    def test_set_gamma
        assert_nothing_raised {
            d = Caca::Dither.new(8, 32, 32, 32, 0, 0, 0, 0)
            d.gamma=0.5
        }
    end
    def test_set_contrast
        assert_nothing_raised {
            d = Caca::Dither.new(8, 32, 32, 32, 0, 0, 0, 0)
            d.contrast=0.5
        }
    end
end