Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add test bib files for entry editor behavior #12510

Merged
merged 2 commits into from
Feb 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/test/resources/testbib/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Test bib files

- `Chocolate.bib`: Library demonstrating JabRef features
- `entry-editor-tabs-biblatex.bib`: Minimal `.bib` file to demonstrate entry editor tab behavior
- entry `a`: Tab "Optional fields" should be shown
- entry `b`: Tabs "Optional fields" and "Other fields" should be shown
- `entry-editor-tabs-bibtex.bib`: Minimal `.bib` file to demonstrate entry editor tab behavior
- entry `a`: Tabs "Optional fields" and "Optional fields 2" should be shown
- entry `b`: Tabs "Optional fields", "Optional fields 2", and "Other fields" should be shown
10 changes: 10 additions & 0 deletions src/test/resources/testbib/entry-editor-tabs-biblatex.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@Article{a,
title = {entry with standard fields},
}

@Article{b,
title = {entry with non-standard fields},
mycustomfields = {test},
}

@Comment{jabref-meta: databaseType:biblatex;}
10 changes: 10 additions & 0 deletions src/test/resources/testbib/entry-editor-tabs-bibtex.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@Article{a,
title = {entry with standard fields},
}

@Article{b,
title = {entry with non-standard fields},
mycustomfields = {test},
}

@Comment{jabref-meta: databaseType:bibtex;}
Loading