File: make_proc.rs

package info (click to toggle)
rust-magnus 0.7.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,468 kB
  • sloc: ruby: 150; sh: 17; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 418 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use magnus::{function, rb_assert, Ruby};

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

    ruby.define_global_function("make_proc", function!(Ruby::block_proc, 0));

    rb_assert!(ruby, "Proc === make_proc { 1 + 1 }");
    rb_assert!(ruby, "(make_proc { 1 + 1 }).call == 2");
    rb_assert!(
        ruby,
        "begin; make_proc; rescue => e; end; ArgumentError === e"
    );
}