Changeset f552e9e for python/tests
- Timestamp:
- Mar 10, 2013, 5:13:51 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:
- 9ead7a9
- Parents:
- 33102ab
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/test_note2midi.py
r33102ab rf552e9e 13 13 ( 'A4', 69 ), 14 14 ( 'A#4', 70 ), 15 ( 'Bb4', 70 ), 16 ( u'B♭4', 70 ), 15 17 ( 'G8', 115 ), 16 18 ( u'G♯8', 116 ), 17 ( u'G♭9', 126 ),18 19 ( 'G9', 127 ), 19 20 ( u'G\udd2a2', 45 ), … … 36 37 37 38 def test_note2midi_wrong_modifier(self): 38 " fails when passed a n invalid note name"39 " fails when passed a note with an invalid modifier " 39 40 self.assertRaises(ValueError, note2midi, 'C.1') 40 41 41 def test_note2midi_ wronge_midifier_again(self):42 " fails when passed a wrong modifier"42 def test_note2midi_another_wrong_modifier_again(self): 43 " fails when passed a note with a invalid note name " 43 44 self.assertRaises(ValueError, note2midi, 'CB-3') 44 45 45 46 def test_note2midi_wrong_octave(self): 46 " fails when passed a wrong octave "47 " fails when passed a wrong octave number " 47 48 self.assertRaises(ValueError, note2midi, 'CBc') 48 49 49 50 def test_note2midi_out_of_range(self): 50 " fails when passed a non-existingnote"51 " fails when passed a out of range note" 51 52 self.assertRaises(ValueError, note2midi, 'A9') 53 54 def test_note2midi_wrong_data_type(self): 55 " fails when passed a non-string value " 56 self.assertRaises(TypeError, note2midi, 123) 52 57 53 58 if __name__ == '__main__':
Note: See TracChangeset
for help on using the changeset viewer.