diff options
author | John Glover <j@johnglover.net> | 2012-08-11 15:47:18 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-08-11 15:47:18 +0100 |
commit | 8a164a8b45c7c974b9abe98036f92aa76096c186 (patch) | |
tree | b0ffda3b435b2358688cdc425996747cff262bdb /tests | |
parent | 56f9ee6640baea33f2f2faf5aa844a55950429f9 (diff) | |
download | simpl-8a164a8b45c7c974b9abe98036f92aa76096c186.tar.gz simpl-8a164a8b45c7c974b9abe98036f92aa76096c186.tar.bz2 simpl-8a164a8b45c7c974b9abe98036f92aa76096c186.zip |
[base, synthesis] Allow synth size to be independent from frame size. Call synth_frame from Cython Synthesis.synth
so that derived classes synth_frame methods are
called.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_base.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_base.py b/tests/test_base.py index 6cd2d39..1a231f5 100644 --- a/tests/test_base.py +++ b/tests/test_base.py @@ -15,7 +15,9 @@ class TestFrame(object): def test_buffers(self): N = 256 f = base.Frame(N) + f.synth_size = N assert f.size == N + assert f.synth_size == N a = np.random.rand(N) f.audio = a |