Ran update-copyright.py
[hooke.git] / test / flat_filter_playlist.py
1 # Copyright (C) 2010-2012 W. Trevor King <wking@tremily.us>
2 #
3 # This file is part of Hooke.
4 #
5 # Hooke is free software: you can redistribute it and/or modify it under the
6 # terms of the GNU Lesser General Public License as published by the Free
7 # Software Foundation, either version 3 of the License, or (at your option) any
8 # later version.
9 #
10 # Hooke is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
13 # details.
14 #
15 # You should have received a copy of the GNU Lesser General Public License
16 # along with Hooke.  If not, see <http://www.gnu.org/licenses/>.
17
18 """
19 >>> from hooke.hooke import Hooke, HookeRunner
20 >>> h = Hooke()
21 >>> r = HookeRunner()
22 >>> h = r.run_lines(h, ['load_playlist test/data/vclamp_picoforce/playlist']) # doctest: +ELLIPSIS
23 <FilePlaylist PicoForce>
24 Success
25 <BLANKLINE>
26 >>> h = r.run_lines(h, ['flat_filter_playlist --distance_column "z piezo (m)" --deflection_column "deflection (m)"']) # doctest: +ELLIPSIS
27 <FilePlaylist playlist-0>
28 Success
29 <BLANKLINE>
30 >>> h.playlists.jump(-1)
31 >>> h.playlists.current().name
32 'playlist-0'
33 >>> h.playlists.current().path
34 u'test/data/vclamp_picoforce/playlist-0.hkp'
35 >>> len(h.playlists.current())
36 0
37
38 Note: I just checked and there really are no interesting features in
39 the vclamp_picoforce data.  Sad.
40 """