From d9a7ad89d8a7554898eedbd72113eb7e461906ae Mon Sep 17 00:00:00 2001 From: John Glover Date: Fri, 16 Mar 2012 17:08:58 +0000 Subject: add Cython base.Peak class --- tests/test_base.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests') diff --git a/tests/test_base.py b/tests/test_base.py index c906f31..4dac897 100644 --- a/tests/test_base.py +++ b/tests/test_base.py @@ -23,3 +23,9 @@ class TestFrame(object): a = np.random.rand(N) f.synth_residual = a assert np.all(f.synth_residual == a) + + def test_peak(self): + p = base.Peak() + p.amplitude = 0.5 + p.frequency = 220.0 + p.phase = 0.0 -- cgit v1.2.3