Moved hooke.driver.hemingclamp to hemingway and updated to new Driver architecture
[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
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation, either
8 # version 3 of the License, or (at your option) any later version.
9 #
10 # Hooke is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU Lesser General 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 """