def test_config_missing_option():
    """
    Test loading a config with missing required field
    """
    manager = ConfigManager(WRITE_DIR)

    # This will raise an exception because we are not providing the "ifname"
    # option.
    ConfigInterface.build(manager, None, "wan", {}, None)