diff options
| author | Martin Fischer <martin@push-f.com> | 2023-09-12 09:03:56 +0200 | 
|---|---|---|
| committer | Martin Fischer <martin@push-f.com> | 2023-09-28 10:36:08 +0200 | 
| commit | 14bc6f2cceed0fa578d6a1195266885bf57a5d4c (patch) | |
| tree | 50988abce274aa5e4aa5905fb4bcc5c8cc4de652 /integration_tests/tests | |
| parent | ad6ac5f0a825775c231e76cdc9016e61e54f4141 (diff) | |
chore: add BasicEmitter stub
Diffstat (limited to 'integration_tests/tests')
| -rw-r--r-- | integration_tests/tests/test_html5lib.rs | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/integration_tests/tests/test_html5lib.rs b/integration_tests/tests/test_html5lib.rs index 36fb880..0040a01 100644 --- a/integration_tests/tests/test_html5lib.rs +++ b/integration_tests/tests/test_html5lib.rs @@ -68,13 +68,15 @@ fn test_tokenizer_file(path: &Path) {  fn run_test(fname: &str, test_i: usize, test: Test) {      for state in &test.initial_states { +        // TODO: test BasicEmitter here once it's implemented +          run_test_inner(              fname,              test_i,              &test,              state,              Tokenizer::new(&test.input, TracingEmitter::default()), -            "string", +            "TracingEmitter string",          );          run_test_inner( @@ -86,7 +88,7 @@ fn run_test(fname: &str, test_i: usize, test: Test) {                  BufReader::new(test.input.as_bytes()),                  TracingEmitter::default(),              ), -            "bufread", +            "TracingEmitter bufread",          );      }  } | 
