wasm-bindgen/crates/web-sys/tests/wasm/paragraph_element.rs
Alex Crichton 7ecf4aae87 cargo +nightly fmt --all
Rustfmt all the things!
2018-09-26 08:26:00 -07:00

20 lines
446 B
Rust

use wasm_bindgen::prelude::*;
use wasm_bindgen_test::*;
use web_sys::HtmlParagraphElement;
#[wasm_bindgen(module = "./tests/wasm/element.js")]
extern "C" {
fn new_paragraph() -> HtmlParagraphElement;
}
#[wasm_bindgen_test]
fn test_paragraph_element() {
let paragraph = new_paragraph();
paragraph.set_align("right");
assert_eq!(
paragraph.align(),
"right",
"Paragraph should be aligned 'right'."
);
}