File: tc_frame.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 (19 lines) | stat: -rw-r--r-- 471 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
require 'caca'

class TC_Frame < Test::Unit::TestCase
	def setup
		@c = Caca::Canvas.new(3, 3)
	end
	def test_create
	      f = @c.create_frame(1)
              assert(f, 'Frame creation failed')
	      @c.free_frame(1)
        end
        def test_name
	     f = @c.create_frame(1)
	     assert(@c.frame_name, 'Failed to get frame name')
	     @c.frame_name="test"
	     assert(@c.frame_name == "test", 'Failed to set frame name')
	     @c.free_frame(1)
        end
end