Skip to content

Commit

Permalink
Add empty targets test
Browse files Browse the repository at this point in the history
  • Loading branch information
Malax committed Feb 12, 2024
1 parent 6e82189 commit 6a82f93
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions libcnb-data/src/buildpack/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,8 @@ variant = "v8"
os = "windows"
arch = "amd64"
[[targets]]
[metadata]
checksum = "abc123"
"#;
Expand Down Expand Up @@ -360,6 +362,12 @@ checksum = "abc123"
arch: Some(String::from("amd64")),
variant: None,
distros: Vec::new(),
},
Target {
os: None,
arch: None,
variant: None,
distros: Vec::new()
}
]
);
Expand Down

0 comments on commit 6a82f93

Please sign in to comment.