From 165c524ecfc67529e51b59fe196d2abc003677a9 Mon Sep 17 00:00:00 2001 From: John Glover Date: Fri, 16 Mar 2012 16:48:04 +0000 Subject: add Cython version of simpl base frame class --- tests/test_base.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tests/test_base.py (limited to 'tests') diff --git a/tests/test_base.py b/tests/test_base.py new file mode 100644 index 0000000..c906f31 --- /dev/null +++ b/tests/test_base.py @@ -0,0 +1,25 @@ +import simpl.base as base +import numpy as np + + +class TestFrame(object): + def test_buffers(self): + N = 256 + f = base.Frame(N) + assert f.size == N + + a = np.random.rand(N) + f.audio = a + assert np.all(f.audio == a) + + a = np.random.rand(N) + f.synth = a + assert np.all(f.synth == a) + + a = np.random.rand(N) + f.residual = a + assert np.all(f.residual == a) + + a = np.random.rand(N) + f.synth_residual = a + assert np.all(f.synth_residual == a) -- cgit v1.2.3