mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-18 23:41:45 +03:00
a98b5ea2a0
Should help enable a slew of new bindings as well.
12 lines
272 B
Rust
12 lines
272 B
Rust
use wasm_bindgen_test::*;
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/array_buffer.rs"));
|
|
|
|
#[wasm_bindgen_test]
|
|
fn take_and_return_a_bunch_of_slices() {
|
|
let f = ArrayBufferTest::new().unwrap();
|
|
let x = f.get_buffer();
|
|
f.set_buffer(None);
|
|
f.set_buffer(Some(x));
|
|
}
|