Remove reference to the testing feature

This commit is contained in:
Gwilym Kuiper 2022-09-15 22:39:44 +01:00
parent 39d3b5f6e8
commit 68fb9c7e02
3 changed files with 0 additions and 12 deletions

View file

@ -253,12 +253,6 @@ impl Gba {
/// #![cfg_attr(test, test_runner(agb::test_runner::test_runner))]
/// ```
///
/// And ensure you add agb with the `testing` feature to your `dev-dependencies`
/// ```toml
/// [dev-dependencies]
/// agb = { version = "<same as in dependencies>", features = ["testing"] }
/// ```
///
/// With this support, you will be able to write tests which you can run using `mgba-test-runner`.
/// Tests are written using `#[test_case]` rather than `#[test]`.
///

View file

@ -9,9 +9,6 @@ edition = "2018"
[dependencies]
agb = { version = "0.11.1", path = "../../agb" }
[dev-dependencies]
agb = { version = "0.11.1", path = "../../agb", features = ["testing"] }
[build-dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

View file

@ -9,9 +9,6 @@ edition = "2018"
[dependencies]
agb = "0.11.1"
[dev-dependencies]
agb = { version = "0.11.1", features = ["testing"] }
[profile.dev]
opt-level = 2
debug = true