Mercurial > code > home > repos > light9
view test/test_patch.py @ 1025:09c3fc7cf6ba
requesting a curve at t=0 used to return the last value instead of the first
Ignore-this: bb2fbc67b2a86441674da187a8654326
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Mon, 26 May 2014 18:19:23 +0000 |
parents | a6662d61ebcd |
children |
line wrap: on
line source
import run_local from light9 import dmxclient, Patch, Submaster from light9.namespaces import L9 def test(): assert Patch.get_channel_name(1) == "frontLeft" assert Patch.get_channel_name("1") == "frontLeft" assert Patch.get_channel_name("frontLeft") == "frontLeft" assert Patch.get_dmx_channel(1) == 1 assert Patch.get_dmx_channel("1") == 1 assert Patch.get_dmx_channel("frontLeft") == 1 assert Patch.get_channel_name("b1") == "frontLeft" assert Patch.get_dmx_channel("b1") == 1 assert Patch.resolve_name("b1") == "frontLeft" assert Patch.resolve_name("frontLeft") == "frontLeft" assert Patch.get_channel_uri("frontLeft") == L9['theater/skyline/channel/frontLeft']