diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_base.py | 6 |
1 files changed, 6 insertions, 0 deletions
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 |