mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 16:21:33 +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))]
|
||||
/// ```
|
||||
///
|
||||
/// 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]`.
|
||||
///
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue