Skip to content

Commit

Permalink
Merge pull request #124 from a-kenji/remove/unused
Browse files Browse the repository at this point in the history
Remove unused test code
  • Loading branch information
a-kenji authored Aug 5, 2024
2 parents f20c298 + 40889da commit 62c2656
Showing 1 changed file with 0 additions and 105 deletions.
105 changes: 0 additions & 105 deletions src/walk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1059,108 +1059,3 @@ impl<'a> Walker {
None
}
}

// #[cfg(test)]
// mod tests {
// use super::*;
// fn minimal_flake() -> &'static str {
// r#"
// {
// description = "flk - a tui for your flakes.";
//
// inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
//
// inputs.rust-overlay = {
// url = "github:oxalica/rust-overlay";
// inputs.nixpkgs.follows = "nixpkgs";
// inputs.flake-utils.follows = "flake-utils";
// }
//
// inputs.crane = {
// url = "github:ipetkov/crane";
// inputs.nixpkgs.follows = "nixpkgs";
// inputs.rust-overlay.follows = "rust-overlay";
// inputs.flake-utils.follows = "flake-utils";
// };
//
// outputs = {
// self,
// nixpkgs,
// flake-utils,
// rust-overlay,
// crane,
// }:
// {};
// }
// "#
// }
// fn minimal_flake_inputs_attrs() -> &'static str {
// r#"
// {
// description = "flk - a tui for your flakes.";
//
// inputs = {
// nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
//
// rust-overlay = {
// url = "github:oxalica/rust-overlay";
// inputs.nixpkgs.follows = "nixpkgs";
// inputs.flake-utils.follows = "flake-utils";
// };
//
// crane = {
// url = "github:ipetkov/crane";
// inputs.nixpkgs.follows = "nixpkgs";
// inputs.rust-overlay.follows = "rust-overlay";
// inputs.flake-utils.follows = "flake-utils";
// };
// };
//
// outputs = {
// self,
// nixpkgs,
// flake-utils,
// rust-overlay,
// crane,
// }:
// {};
// }
// "#
// }
// fn only_inputs_flake() -> &'static str {
// r#"
// {
// inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
//
// inputs.rust-overlay = {
// url = "github:oxalica/rust-overlay";
// inputs.nixpkgs.follows = "nixpkgs";
// inputs.flake-utils.follows = "flake-utils";
// };
//
// inputs.crane = {
// url = "github:ipetkov/crane";
// inputs.nixpkgs.follows = "nixpkgs";
// inputs.rust-overlay.follows = "rust-overlay";
// inputs.flake-utils.follows = "flake-utils";
// };
//
// outputs = {}:
// {};
// }
// "#
// }
// fn no_inputs_flake() -> &'static str {
// r#"
// {
// description = "flk - a tui for your flakes.";
//
// outputs = {
// self,
// nixpkgs,
// }:
// {};
// }
// "#
// }
// }

0 comments on commit 62c2656

Please sign in to comment.