Ran update_copyright.py
[hooke.git] / test / hemingway_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', 'fclamp_hemingway', 'playlist')
25 >>> h = r.run_lines(h, ['load_playlist ' + playlist]) # doctest: +ELLIPSIS
26 <FilePlaylist playlist.hkp>
27 Success
28 <BLANKLINE>
29 >>> h = r.run_lines(h, ['curve_info']) # doctest: +ELLIPSIS, +REPORT_UDIFF
30 name: 20080428_a53t-0-0-10.dat
31 path: test/data/fclamp_hemingway/20080428_a53t-0-0-10.dat
32 experiment: <class 'hooke.experiment.ForceClamp'>
33 driver: <hooke.driver.hemingway.HemingwayDriver object at 0x...>
34 filetype: hemingway
35 note: 
36 blocks: 1
37 block sizes: [(14798, 5)]
38 Success
39 <BLANKLINE>
40 """