Be slightly more path-seperator agnostic in test/*_driver.py
[hooke.git] / test / mfp3d_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 >>> from hooke.hooke import Hooke, HookeRunner
21 >>> h = Hooke()
22 >>> r = HookeRunner()
23 >>> playlist = os.path.join('test', 'data', 'vclamp_mfp3d', 'playlist')
24 >>> h = r.run_lines(h, ['load_playlist ' + playlist])
25 <FilePlaylist playlist.hkp>
26 Success
27 <BLANKLINE>
28 >>> h = r.run_lines(h, ['curve_info']) # doctest: +ELLIPSIS, +REPORT_UDIFF
29 name: Line0004Point0000.ibw
30 path: test/data/vclamp_mfp3d/Line0004Point0000.ibw
31 experiment: <class 'hooke.experiment.VelocityClamp'>
32 driver: <hooke.driver.mfp3d.MFP3DDriver object at 0x...>
33 filetype: mfp3d
34 note: 
35 blocks: 2
36 block sizes: [(1091, 2), (0, 2)]
37 Success
38 <BLANKLINE>
39
40 Also checkout a newer Image* file
41
42 >>> h = r.run_lines(h, ['previous_curve'])
43 Success
44 <BLANKLINE>
45 >>> h = r.run_lines(h, ['curve_info']) # doctest: +ELLIPSIS, +REPORT_UDIFF
46 name: Image0396.ibw
47 path: test/data/vclamp_mfp3d/Image0396.ibw
48 experiment: <class 'hooke.experiment.VelocityClamp'>
49 driver: <hooke.driver.mfp3d.MFP3DDriver object at 0x...>
50 filetype: mfp3d
51 note: 
52 blocks: 2
53 block sizes: [(1006, 3), (0, 3)]
54 Success
55 <BLANKLINE>
56 """