Beispiel #1
0
def default_style_mappings_are_ignored_if_include_default_style_map_is_false():
    style_map = read_options({
        "style_map": "p.SectionTitle => h2",
        "include_default_style_map": False
    }).value["style_map"]
    assert_equal([style_reader.read_style("p.SectionTitle => h2").value],
                 style_map)
Beispiel #2
0
def lines_starting_with_hash_in_custom_style_map_are_ignored():
    style_map = read_options({
        "style_map": "#p.SectionTitle => h3\np.SectionTitle => h2",
        "include_default_style_map": False
    }).value["style_map"]
    assert_equal([style_reader.read_style("p.SectionTitle => h2").value],
                 style_map)
Beispiel #3
0
def custom_style_mappings_are_prepended_to_default_style_mappings():
    style_map = read_options({
        "style_map": "p.SectionTitle => h2"
    }).value["style_map"]
    assert_equal(
        style_reader.read_style("p.SectionTitle => h2").value, style_map[0])
    assert_equal(_default_style_map, style_map[1:])
Beispiel #4
0
def default_style_map_is_used_if_style_map_is_not_set():
    assert_equal(_default_style_map, read_options({}).value["style_map"])
def default_style_map_is_used_if_style_map_is_not_set():
    assert_equal(_default_style_map, read_options({}).value["style_map"])
def lines_starting_with_hash_in_custom_style_map_are_ignored():
    style_map = read_options({
        "style_map": "#p.SectionTitle => h3\np.SectionTitle => h2",
        "include_default_style_map": False
    }).value["style_map"]
    assert_equal([read_style_mapping("p.SectionTitle => h2").value], style_map)
def default_style_mappings_are_ignored_if_include_default_style_map_is_false():
    style_map = read_options({
        "style_map": "p.SectionTitle => h2",
        "include_default_style_map": False
    }).value["style_map"]
    assert_equal([read_style_mapping("p.SectionTitle => h2").value], style_map)
def custom_style_mappings_are_prepended_to_default_style_mappings():
    style_map = read_options({
        "style_map": "p.SectionTitle => h2"
    }).value["style_map"]
    assert_equal(read_style_mapping("p.SectionTitle => h2").value, style_map[0])
    assert_equal(_default_style_map, style_map[1:])