mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Adjust test dives to comply with the current trip syntax
Otherwise the tests fail - we no longer support the old format. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
6766c56220
commit
19750ed15a
3 changed files with 6 additions and 3 deletions
|
@ -1,9 +1,10 @@
|
|||
<dives>
|
||||
<program name='subsurface' version='1'></program>
|
||||
<trip date='2011-12-02' time='14:00:00' />
|
||||
<trip date='2011-12-02' time='14:00:00' >
|
||||
<dive number='20' tripflag='INTRIP' date='2011-12-02' time='14:00:00' duration='30:00 min'>
|
||||
<depth max='20.0 m' mean='15.0 m' />
|
||||
<location>20th test dive - this should be in a trip with same location</location>
|
||||
<notes>We are testing that the location of the dive is picked up in the trip if the trip has no location</notes>
|
||||
</dive>
|
||||
</trip>
|
||||
</dives>
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
<dives>
|
||||
<program name='subsurface' version='1'></program>
|
||||
<trip date='2011-12-02' location='trip location' time='15:00:00' />
|
||||
<trip date='2011-12-02' location='trip location' time='15:00:00' >
|
||||
<dive number='21' tripflag='INTRIP' date='2011-12-02' time='15:00:00' duration='30:00 min'>
|
||||
<depth max='20.0 m' mean='15.0 m' />
|
||||
<location>21st test dive - this should be in a trip with a trip location</location>
|
||||
<notes>We are testing that the location of the dive is not picked up in the trip if the trip has a location</notes>
|
||||
</dive>
|
||||
</trip>
|
||||
</dives>
|
||||
|
|
|
@ -1,11 +1,12 @@
|
|||
<dives>
|
||||
<program name='subsurface' version='1'></program>
|
||||
<trip date='2011-12-02' time='6:00:00' location='trip location' />
|
||||
<trip date='2011-12-02' time='6:00:00' location='trip location' >
|
||||
<dive number='23' tripflag='INTRIP' date='2011-12-02' time='6:00:00' duration='30:00 min'>
|
||||
<depth max='20.0 m' mean='15.0 m' />
|
||||
<location>23rd test dive - this should be in a trip</location>
|
||||
<notes>We are testing that the NOTRIP flag works</notes>
|
||||
</dive>
|
||||
</trip>
|
||||
<dive number='22' tripflag='NOTRIP' date='2011-12-03' time='7:00:00' duration='30:00 min'>
|
||||
<depth max='20.0 m' mean='15.0 m' />
|
||||
<location>22nd test dive - this should not be in a trip</location>
|
||||
|
|
Loading…
Add table
Reference in a new issue