Skip to content

Commit

Permalink
a couple test
Browse files Browse the repository at this point in the history
darcs-hash:20060624235250-28bda-abfc30e92c379496c0d7d66ca9571bbdeeb7b4d9.gz
  • Loading branch information
fugalh committed Jun 24, 2006
1 parent 052f32a commit af39b88
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion test/test_lirc.rb
Expand Up @@ -8,18 +8,29 @@ def setup
def teardown
end
def test_event
e = Event.new("00000000000a8b59 00 power Sony-838")
ev1 = "00000000000a8b59 00 power Sony-838"
e = Event.new(ev1)
assert_equal 0xa8b59, e.code
assert_equal 0, e.repeat
assert ! e.repeat?
assert_equal "power", e.name
assert_equal "Sony-838", e.remote
assert_equal ev1, e.to_s

e = Event.new("00000000000a8b59 01 power Sony-838")
assert_equal 0xa8b59, e.code
assert_equal 1, e.repeat
assert e.repeat?
assert_equal "power", e.name
assert_equal "Sony-838", e.remote

e = Event.new("00000000000a8b59 10 power Sony-838")
assert_equal 0x10, e.repeat
assert e.repeat?
end
def test_client
c = Client.new
puts "press a key on the remote now"
puts c.next
end
end

0 comments on commit af39b88

Please sign in to comment.