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

Natasha Vasquez #614

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
23 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
cards and turns added for fun
  • Loading branch information
nvnatasha committed Aug 25, 2024
commit 2717580e1a99d262856c98641e25e7712bbd10ec
10 changes: 9 additions & 1 deletion spec/deck_spec.rb
Original file line number Diff line number Diff line change
@@ -11,7 +11,15 @@

card3 = Card.new("What vein is best to place and IV catheter?", "Cephalic", "Medical")

cards = [card1, card2, card3]
card4 = Card.new("What species is Solensia for?", "Felines", "Medical")

card5 = Card.new("How is Leptospirosis most commonly transmitted?", "Urine", "Medical")

card6 Card.new("What is a common anti-inflammatory for cats?", "Onsior", "Medical")

card7 Card.new("What behavior do Natasha's favorite appointments have?", "Aggressive", "Personal")

cards = [card1, card2, card3, card4, card5, card6, card7]

deck = Deck.new(cards)

21 changes: 11 additions & 10 deletions spec/round_spec.rb
Original file line number Diff line number Diff line change
@@ -3,24 +3,25 @@
require './lib/deck'
require './lib/round'


card1 = Card.new("What is Dr. Brown's specialty?", "Ultrasonography", "Personal")


card2 = Card.new("What does Dr. Reeve love?", "Poms", "Personal")


card3 = Card.new("What vein is best to place and IV catheter?", "Cephalic", "Medical")
card4 = Card.new("What species is Solensia for?", "Felines", "Medical")
card5 = Card.new("How is Leptospirosis most commonly transmitted?", "Urine", "Medical")
card6 Card.new("What is a common anti-inflammatory for cats?", "Onsior", "Medical")
card7 Card.new("What behavior do Natasha's favorite appointments have?", "Aggressive", "Personal")

turn1 = Turn.new(card1, "Chemo")
cards = [card1, card2, card3, card4, card5, card6, card7]

turn1 = Turn.new(card1, "Chemo")
turn2 = Turn.new(card2, "Poms")

turn3 = Turn.new(card3, "Saphenous")
turn4 = Turn.new(card4, "Felines")
turn5 = Turn.new(card5, "Blood")
turn6 = Turn.new(card6, "Onsior")
turn7 = Turn.new(card7, "Friendly")

turns = [turn1, turn2, turn3]

cards = [card1, card2, card3]
turns = [turn1, turn2, turn3, turn4, turn5, turn6, turn7]

deck = Deck.new(cards)