Skip to content

Commit

Permalink
removed redundant unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
reissim authored and waynebeaton committed Apr 23, 2024
1 parent 0582900 commit 2cc58f6
Showing 1 changed file with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,19 +104,6 @@ void testV9Format() throws IOException {
}
}

@Test
void testFormat() throws IOException {
//try (InputStream input = this.getClass().getResourceAsStream("/pnpm-lock.yaml")) {
//try (InputStream input = this.getClass().getResourceAsStream("/pnpm-lock2.yaml")) {
try (InputStream input = this.getClass().getResourceAsStream("fixtures/pnpm/pnpm-lock-v6.yaml")) {
PnpmPackageLockFileReader reader = new PnpmPackageLockFileReader(input);
//var ids = reader.contentIds().collect(Collectors.toList());
var ids = reader.getContentIds();
assertFalse(ids.isEmpty(), "Should have some content ids");

}
}

@Test
void testAllRecordsDetected() throws IOException {
try (InputStream input = this.getClass().getResourceAsStream("fixtures/pnpm/pnpm-lock-v6-small.yaml")) {
Expand Down

0 comments on commit 2cc58f6

Please sign in to comment.