Update test/ with new 'block names' in 'curve info' (from 3371b5652dfe).
[hooke.git] / test / jpk_driver.py
1 # Copyright (C) 2010 W. Trevor King <wking@drexel.edu>
2 #
3 # This file is part of Hooke.
4 #
5 # Hooke is free software: you can redistribute it and/or modify it
6 # under the terms of the GNU Lesser General Public License as
7 # published by the Free Software Foundation, either version 3 of the
8 # License, or (at your option) any later version.
9 #
10 # Hooke is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
13 # Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with Hooke.  If not, see
17 # <http://www.gnu.org/licenses/>.
18
19 """
20 >>> import os.path
21 >>> from hooke.hooke import Hooke, HookeRunner
22 >>> h = Hooke()
23 >>> r = HookeRunner()
24 >>> playlist = os.path.join('test', 'data', 'vclamp_jpk', 'playlist')
25 >>> h = r.run_lines(h, ['load_playlist ' + playlist]) # doctest: +ELLIPSIS
26 <FilePlaylist JPK>
27 Success
28 <BLANKLINE>
29 >>> h = r.run_lines(h, ['curve_info']) # doctest: +ELLIPSIS, +REPORT_UDIFF
30 name: 2009.04.23-15.15.47.jpk
31 path: .../test/data/vclamp_jpk/2009.04.23-15.15.47.jpk
32 experiment: <hooke.experiment.VelocityClamp object at 0x...>
33 driver: <hooke.driver.jpk.JPKDriver object at 0x...>
34 filetype: jpk
35 note: None
36 command stack: []
37 blocks: 2
38 block names: ['approach', 'retract']
39 block sizes: [(4096, 6), (4096, 4)]
40 Success
41 <BLANKLINE>
42 """