Sha256: df037981097ddc50003de4edf0215d120abcbf70ede2a7059cb0a5ddebacf781

Contents?: true

Size: 670 Bytes

Versions: 4

Compression:

Stored size: 670 Bytes

Contents

use magnus::{error::IntoError, function, rb_assert, Error, Ruby};

struct CustomError(&'static str);

impl IntoError for CustomError {
    fn into_error(self, ruby: &Ruby) -> Error {
        Error::new(
            ruby.exception_runtime_error(),
            format!("Custom error: {}", self.0),
        )
    }
}

fn example() -> Result<(), CustomError> {
    Err(CustomError("test"))
}

#[test]
fn it_can_bind_function_returning_custom_error() {
    let ruby = unsafe { magnus::embed::init() };

    ruby.define_global_function("example", function!(example, 0));

    rb_assert!(
        ruby,
        r#"(example rescue $!).message == "Custom error: test""#
    );
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
wasmtime-29.0.0 ./ext/cargo-vendor/magnus-0.7.1/tests/return_custom_error.rs
wasmtime-28.0.0 ./ext/cargo-vendor/magnus-0.7.1/tests/return_custom_error.rs
wasmtime-27.0.0 ./ext/cargo-vendor/magnus-0.7.1/tests/return_custom_error.rs
wasmtime-26.0.0 ./ext/cargo-vendor/magnus-0.7.1/tests/return_custom_error.rs