smartest 0.1.0.alpha1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b4b99c1edbf3ad101277d9c87de980708ffe37b5665a3b151be6f03803d4837a
4
+ data.tar.gz: 6c0d645bd34ccedc0df9ef4fdacb9c3b43133bee5a0f6172ab73c5d9b44c05d1
5
+ SHA512:
6
+ metadata.gz: 567e14909b4fd63fe70392014d5f41d964e078ac7f16c46ff64071ae6860eb0eabdad3b1c2c409e51b52ce440b487b2531897ceee40f4d6de5dc79a6eb6297a5
7
+ data.tar.gz: ca377cc64560272f1d75f5527ce10014771bf728500d8489abb6a68a6e285c30c1f587b4a24f47a871ead56033a8fb6b4225dbe60c226c6b1288a1d5cdc509fe
data/CHANGELOG.md ADDED
@@ -0,0 +1,16 @@
1
+ # Changelog
2
+
3
+ ## 0.1.0 - Unreleased
4
+
5
+ - Add the initial Smartest test runner.
6
+ - Support top-level `test` definitions.
7
+ - Support class-based fixtures through `Smartest::Fixture`.
8
+ - Support required keyword-argument fixture injection and fixture dependencies.
9
+ - Support per-test fixture caching and cleanup.
10
+ - Support suite-scoped fixtures through `suite_fixture`.
11
+ - Support `eq`, `include`, `be_nil`, and `raise_error` matchers.
12
+ - Add the `smartest` CLI.
13
+ - Add `--help` and `--version` CLI options.
14
+ - Use `smartest/**/*_test.rb` as the default CLI glob so Smartest can coexist with Minitest files under `test/`.
15
+ - Add gem packaging metadata and release tasks.
16
+ - Add Docusaurus documentation.