Changeset 86ad546 for python/tests
- Timestamp:
- Mar 22, 2013, 6:33:54 PM (12 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- c342c17
- Parents:
- 01e7be0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/test_phasevoc.py
r01e7be0 r86ad546 8 8 class aubio_pvoc_test_case(TestCase): 9 9 10 def test_members (self):10 def test_members_automatic_sizes_default(self): 11 11 f = pvoc() 12 12 assert_equal ([f.win_s, f.hop_s], [1024, 512]) 13 14 def test_members_automatic_sizes_not_null(self): 13 15 f = pvoc(2048, 128) 14 16 assert_equal ([f.win_s, f.hop_s], [2048, 128])
Note: See TracChangeset
for help on using the changeset viewer.