Read-only patch written, frontend shows dictionary in different languages

This commit is contained in:
maddiebaka
2023-12-07 11:31:54 -05:00
parent 60f37ece67
commit 937f97ecb2
23 changed files with 3364 additions and 264 deletions

View File

@@ -14,6 +14,7 @@ RSpec.describe "Dictionary", type: :request do
it "shows the count of parts of speech in the database" do
5.times { FactoryBot.create(:part_of_speech) }
#puts PartOfSpeech.count
get "/dictionary"
expect(response.body).to include("#{PartOfSpeech.count} parts of speech entries in database")
end