Compare commits
No commits in common. "366efd833170bf07902aa08cc9fd97b80091c965" and "06c61ade5497dd80a7dceb147ad16b224bd4e1bc" have entirely different histories.
366efd8331
...
06c61ade54
|
@ -54,10 +54,6 @@ Trixy contains integration tests in the `./tests` directory. These are maintaine
|
||||||
`./scripts/tests.sh` script. Take a look at it's `--help` output for further usage
|
`./scripts/tests.sh` script. Take a look at it's `--help` output for further usage
|
||||||
information.
|
information.
|
||||||
|
|
||||||
This crate also contains a binary, which can help with manual testing and inspecting of the
|
|
||||||
generated AST. The `cargo run --features 'build-binary' -- --help` output should provide
|
|
||||||
all required information.
|
|
||||||
|
|
||||||
Tests are (as of now) only positive, i.e. they can only test successful situations.
|
Tests are (as of now) only positive, i.e. they can only test successful situations.
|
||||||
Failing test will probably be supported in the future.
|
Failing test will probably be supported in the future.
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ pub mod test {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fn from_ptr(
|
fn from_ptr(
|
||||||
_ptr: Self::Ptr,
|
ptr: Self::Ptr,
|
||||||
) -> Result<Self, trixy::types::error::TypeConversionError> {
|
) -> Result<Self, trixy::types::error::TypeConversionError> {
|
||||||
todo!()
|
todo!()
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue