boa_engine 0.17.0

Boa is a Javascript lexer, parser and compiler written in Rust. Currently, it has support for some of the language.
Documentation
use super::Attribute;

#[test]
fn writable() {
    let attribute = Attribute::WRITABLE;

    assert!(attribute.writable());
}

#[test]
fn enumerable() {
    let attribute = Attribute::ENUMERABLE;

    assert!(attribute.enumerable());
}

#[test]
fn configurable() {
    let attribute = Attribute::CONFIGURABLE;

    assert!(attribute.configurable());
}

#[test]
fn writable_and_enumerable() {
    let attribute = Attribute::WRITABLE | Attribute::ENUMERABLE;

    assert!(attribute.writable());
    assert!(attribute.enumerable());
}

#[test]
fn enumerable_configurable() {
    let attribute = Attribute::ENUMERABLE | Attribute::CONFIGURABLE;

    assert!(!attribute.writable());

    assert!(attribute.enumerable());
    assert!(attribute.configurable());
}

#[test]
fn writable_enumerable_configurable() {
    let attribute = Attribute::WRITABLE | Attribute::ENUMERABLE | Attribute::CONFIGURABLE;

    assert!(attribute.writable());
    assert!(attribute.enumerable());
    assert!(attribute.configurable());
}

#[test]
fn default() {
    let attribute = Attribute::default();

    assert!(!attribute.writable());
    assert!(!attribute.enumerable());
    assert!(!attribute.configurable());
}

#[test]
fn clear() {
    let mut attribute = Attribute::default();

    attribute.clear();

    assert!(!attribute.writable());
    assert!(!attribute.enumerable());
    assert!(!attribute.configurable());

    assert!(attribute.is_empty());
}

#[test]
fn set_writable_to_true() {
    let mut attribute = Attribute::default();

    attribute.set_writable(true);

    assert!(attribute.writable());
    assert!(!attribute.enumerable());
    assert!(!attribute.configurable());
}

#[test]
fn set_writable_to_false() {
    let mut attribute = Attribute::default();

    attribute.set_writable(false);

    assert!(!attribute.writable());
    assert!(!attribute.enumerable());
    assert!(!attribute.configurable());
}

#[test]
fn set_enumerable_to_true() {
    let mut attribute = Attribute::default();

    attribute.set_enumerable(true);

    assert!(!attribute.writable());
    assert!(attribute.enumerable());
    assert!(!attribute.configurable());
}

#[test]
fn set_enumerable_to_false() {
    let mut attribute = Attribute::default();

    attribute.set_enumerable(false);

    assert!(!attribute.writable());
    assert!(!attribute.enumerable());
    assert!(!attribute.configurable());
}

#[test]
fn set_configurable_to_true() {
    let mut attribute = Attribute::default();

    attribute.set_configurable(true);

    assert!(!attribute.writable());
    assert!(!attribute.enumerable());
    assert!(attribute.configurable());
}

#[test]
fn set_configurable_to_false() {
    let mut attribute = Attribute::default();

    attribute.set_configurable(false);

    assert!(!attribute.writable());
    assert!(!attribute.enumerable());
    assert!(!attribute.configurable());
}