Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
Gender is always blank on submissions now, because they changed it to…
… be a tag instead
  • Loading branch information
Deer-Spangle committed Dec 11, 2025
commit 9ef11963ebd4089a3244134a957a263b5bd5b751
6 changes: 3 additions & 3 deletions tests/integration/fa_parsing_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@
expect(sub[:category]).not_to be_blank
expect(sub[:theme]).not_to be_blank
expect(sub[:species]).not_to be_blank
expect(sub[:gender]).not_to be_blank
expect(sub[:gender]).to be_blank
expect(sub[:favorites]).to match(/[0-9]+/)
expect(sub[:favorites].to_i).to be_positive
expect(sub[:comments]).to match(/[0-9]+/)
Expand Down Expand Up @@ -657,7 +657,7 @@
expect(sub[:category]).not_to be_blank
expect(sub[:theme]).not_to be_blank
expect(sub[:species]).not_to be_blank
expect(sub[:gender]).not_to be_blank
expect(sub[:gender]).to be_blank
expect(sub[:favorites]).to match(/[0-9]+/)
expect(sub[:favorites].to_i).to be >= 0
expect(sub[:comments]).to match(/[0-9]+/)
Expand Down Expand Up @@ -757,7 +757,7 @@
expect(sub[:category]).not_to be_blank
expect(sub[:theme]).not_to be_blank
expect(sub[:species]).not_to be_blank
expect(sub[:gender]).not_to be_blank
expect(sub[:gender]).to be_blank
expect(sub[:favorites]).to match(/[0-9]+/)
expect(sub[:favorites].to_i).to be_positive
expect(sub[:comments]).to match(/[0-9]+/)
Expand Down
Loading