Allow deadcode in test_support (#1555)
#1546 Was pushed while not passing the clippy integration tests. This is fixing it.
This commit is contained in:
@@ -30,6 +30,7 @@ pub fn load_default_config_for_test(codex_home: &TempDir) -> Config {
|
|||||||
/// with only a `type` field results in an event with no `data:` section. This
|
/// with only a `type` field results in an event with no `data:` section. This
|
||||||
/// makes it trivial to extend the fixtures as OpenAI adds new event kinds or
|
/// makes it trivial to extend the fixtures as OpenAI adds new event kinds or
|
||||||
/// fields.
|
/// fields.
|
||||||
|
#[allow(dead_code)]
|
||||||
pub fn load_sse_fixture(path: impl AsRef<std::path::Path>) -> String {
|
pub fn load_sse_fixture(path: impl AsRef<std::path::Path>) -> String {
|
||||||
let events: Vec<serde_json::Value> =
|
let events: Vec<serde_json::Value> =
|
||||||
serde_json::from_reader(std::fs::File::open(path).expect("read fixture"))
|
serde_json::from_reader(std::fs::File::open(path).expect("read fixture"))
|
||||||
@@ -54,6 +55,7 @@ pub fn load_sse_fixture(path: impl AsRef<std::path::Path>) -> String {
|
|||||||
/// fixture template with the supplied identifier before parsing. This lets a
|
/// fixture template with the supplied identifier before parsing. This lets a
|
||||||
/// single JSON template be reused by multiple tests that each need a unique
|
/// single JSON template be reused by multiple tests that each need a unique
|
||||||
/// `response_id`.
|
/// `response_id`.
|
||||||
|
#[allow(dead_code)]
|
||||||
pub fn load_sse_fixture_with_id(path: impl AsRef<std::path::Path>, id: &str) -> String {
|
pub fn load_sse_fixture_with_id(path: impl AsRef<std::path::Path>, id: &str) -> String {
|
||||||
let raw = std::fs::read_to_string(path).expect("read fixture template");
|
let raw = std::fs::read_to_string(path).expect("read fixture template");
|
||||||
let replaced = raw.replace("__ID__", id);
|
let replaced = raw.replace("__ID__", id);
|
||||||
|
|||||||
Reference in New Issue
Block a user