summaryrefslogtreecommitdiffstats
path: root/third_party/rust/fluent-testing/src/scenarios/simple.rs
blob: aff4c0d313eddd2aa5e9c59535e38f385b82a070 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use super::structs::*;
use crate::queries;

pub fn get_scenario() -> Scenario {
    Scenario::new(
        "simple",
        vec![FileSource::new(
            "browser",
            "browser/{locale}/",
            vec!["en-US", "pl"],
        )],
        vec!["en-US"],
        vec!["browser/sanitize.ftl"],
        queries![("history-section-label", "History")],
    )
}