mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
Remove reference to the testing feature
This commit is contained in:
parent
39d3b5f6e8
commit
68fb9c7e02
|
@ -253,12 +253,6 @@ impl Gba {
|
||||||
/// #![cfg_attr(test, test_runner(agb::test_runner::test_runner))]
|
/// #![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`.
|
/// 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]`.
|
/// Tests are written using `#[test_case]` rather than `#[test]`.
|
||||||
///
|
///
|
||||||
|
|
|
@ -9,9 +9,6 @@ edition = "2018"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
agb = { version = "0.11.1", path = "../../agb" }
|
agb = { version = "0.11.1", path = "../../agb" }
|
||||||
|
|
||||||
[dev-dependencies]
|
|
||||||
agb = { version = "0.11.1", path = "../../agb", features = ["testing"] }
|
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
|
|
|
@ -9,9 +9,6 @@ edition = "2018"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
agb = "0.11.1"
|
agb = "0.11.1"
|
||||||
|
|
||||||
[dev-dependencies]
|
|
||||||
agb = { version = "0.11.1", features = ["testing"] }
|
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
opt-level = 2
|
opt-level = 2
|
||||||
debug = true
|
debug = true
|
||||||
|
|
Loading…
Reference in a new issue