├── .github └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── README.md.skt.md ├── deny.toml ├── skeptic ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT └── src │ ├── lib.rs │ ├── rt.rs │ └── tests.rs ├── template-example.md └── testing ├── Cargo.toml ├── build.rs └── tests ├── hashtag-test.md ├── section-names.md ├── should-panic-test.md └── skeptic.rs /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budziq/rust-skeptic/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | *~ 4 | libtest.rmeta 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budziq/rust-skeptic/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = ["skeptic", "testing"] 3 | -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budziq/rust-skeptic/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budziq/rust-skeptic/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budziq/rust-skeptic/HEAD/README.md -------------------------------------------------------------------------------- /README.md.skt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budziq/rust-skeptic/HEAD/README.md.skt.md -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budziq/rust-skeptic/HEAD/deny.toml -------------------------------------------------------------------------------- /skeptic/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budziq/rust-skeptic/HEAD/skeptic/Cargo.toml -------------------------------------------------------------------------------- /skeptic/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /skeptic/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /skeptic/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budziq/rust-skeptic/HEAD/skeptic/src/lib.rs -------------------------------------------------------------------------------- /skeptic/src/rt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budziq/rust-skeptic/HEAD/skeptic/src/rt.rs -------------------------------------------------------------------------------- /skeptic/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budziq/rust-skeptic/HEAD/skeptic/src/tests.rs -------------------------------------------------------------------------------- /template-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budziq/rust-skeptic/HEAD/template-example.md -------------------------------------------------------------------------------- /testing/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budziq/rust-skeptic/HEAD/testing/Cargo.toml -------------------------------------------------------------------------------- /testing/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budziq/rust-skeptic/HEAD/testing/build.rs -------------------------------------------------------------------------------- /testing/tests/hashtag-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budziq/rust-skeptic/HEAD/testing/tests/hashtag-test.md -------------------------------------------------------------------------------- /testing/tests/section-names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budziq/rust-skeptic/HEAD/testing/tests/section-names.md -------------------------------------------------------------------------------- /testing/tests/should-panic-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budziq/rust-skeptic/HEAD/testing/tests/should-panic-test.md -------------------------------------------------------------------------------- /testing/tests/skeptic.rs: -------------------------------------------------------------------------------- 1 | include!(concat!(env!("OUT_DIR"), "/skeptic-tests.rs")); 2 | --------------------------------------------------------------------------------