From 0c495ba984436cccc6caeed66639a2b61095dbad Mon Sep 17 00:00:00 2001 From: Martin Fischer <martin@push-f.com> Date: Fri, 18 Aug 2023 16:43:03 +0200 Subject: chore: switch from pretty_assertions to similar-asserts In the next commit I'm adding a test that compares the content of files and pretty_assertions doesn't omit large portions of unchanged lines in its diff[1] (contrary to similar-asserts). (Sidenote: We already depend on similar via insta.) [1]: https://github.com/rust-pretty-assertions/rust-pretty-assertions/issues/114 --- Cargo.toml | 5 ++++- integration_tests/Cargo.toml | 2 +- integration_tests/tests/test_html5lib.rs | 2 +- tests/test_spans.rs | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 99a257a..943f710 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,9 @@ members = [".", "html5lib_tests", "integration_tests"] default-members = [".", "html5lib_tests", "integration_tests"] +[workspace.dependencies] +similar-asserts = "1.4.2" + [package] name = "html5tokenizer" authors = ["Markus Unterwaditzer <markus-honeypot@unterwaditzer.net>", "Martin Fischer <martin@push-f.com>"] @@ -17,7 +20,7 @@ include = ["src/**/*", "LICENSE", "README.md"] [dev-dependencies] codespan-reporting = "0.11.1" insta = "1.31.0" -pretty_assertions = "1.0.0" +similar-asserts = { workspace = true } [features] # Feature used by integration tests in tests/ to get access to library internals. diff --git a/integration_tests/Cargo.toml b/integration_tests/Cargo.toml index cc27798..2123c75 100644 --- a/integration_tests/Cargo.toml +++ b/integration_tests/Cargo.toml @@ -18,4 +18,4 @@ edition = "2021" glob = "0.3.1" html5lib_tests = { path = "../html5lib_tests" } html5tokenizer = { path = "..", features = ["integration-tests"] } -pretty_assertions = "1.0.0" +similar-asserts = { workspace = true } diff --git a/integration_tests/tests/test_html5lib.rs b/integration_tests/tests/test_html5lib.rs index da3e983..7511f11 100644 --- a/integration_tests/tests/test_html5lib.rs +++ b/integration_tests/tests/test_html5lib.rs @@ -4,7 +4,7 @@ use html5lib_tests::{ parse_tests, Error as TestError, InitialState, Output, Test, Token as TestToken, }; use html5tokenizer::{reader::Reader, DefaultEmitter, InternalState, Token, Tokenizer}; -use pretty_assertions::assert_eq; +use similar_asserts::assert_eq; /// Path to a local checkout of [html5lib-tests], relative to the /// directory containing the `Cargo.toml` file of the current crate. diff --git a/tests/test_spans.rs b/tests/test_spans.rs index 10735b2..9fecae8 100644 --- a/tests/test_spans.rs +++ b/tests/test_spans.rs @@ -8,7 +8,7 @@ use codespan_reporting::{ }; use html5tokenizer::{offset::PosTrackingReader, DefaultEmitter, Token, Tokenizer}; use insta::assert_snapshot; -use pretty_assertions::assert_eq; +use similar_asserts::assert_eq; fn tokenizer(html: &'static str) -> impl Iterator<Item = Token<usize>> { Tokenizer::new( -- cgit v1.2.3