Updated test/ to match the new explicit YAML format.
[hooke.git] / test / curve_info.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 >>> from hooke.hooke import Hooke, HookeRunner
21 >>> h = Hooke()
22 >>> r = HookeRunner()
23 >>> h = r.run_lines(h, ['load_playlist test/data/test']) # doctest: +ELLIPSIS
24 <FilePlaylist test.hkp>
25 Success
26 <BLANKLINE>
27 >>> h = r.run_lines(h, ['curve_info']) # doctest: +ELLIPSIS, +REPORT_UDIFF
28 name: picoforce.000
29 path: .../test/data/picoforce.000
30 experiment: <hooke.experiment.VelocityClamp object at 0x...>
31 driver: <hooke.driver.picoforce.PicoForceDriver object at 0x...>
32 filetype: picoforce
33 note: None
34 command stack: []
35 blocks: 2
36 block sizes: [(2048, 2), (2048, 2)]
37 Success
38 <BLANKLINE>
39 """