25 lines
383 B
Rust
25 lines
383 B
Rust
|
use crate::types;
|
||
|
|
||
|
#[cfg(test)]
|
||
|
mod test {
|
||
|
#[test]
|
||
|
fn read_a_legacy_set_rep_record() {
|
||
|
unimplemented!()
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn read_a_legacy_steps_record() {
|
||
|
unimplemented!()
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn read_a_legacy_time_distance_record() {
|
||
|
unimplemented!()
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn read_a_legacy_weight_record() {
|
||
|
unimplemented!()
|
||
|
}
|
||
|
}
|