Skip to content

timomitchel/mythical_creatures

Repository files navigation

Mythical Creatures

A collection of simple exercises to practice Ruby and TDD

Suggested Order

  • unicorn_test.rb
  • vampire_test.rb
  • dragon_test.rb
  • hobbit_test.rb
  • pirate_test.rb
  • wizard_test.rb
  • medusa_test.rb
  • werewolf_test.rb
  • centaur_test.rb

Extra Challenges

Testing with RSpec

For the majority of the class we use minitest because there's so little to learn about the API. But a huge part of the Ruby community favors the expressiveness of RSpec.

The Dreaded if Statement

Can you complete implementations of each of the creatures without using if statements? Think about how removing them affects your code. Remember that a case is just a different form of if, so don't use it.

Imagine Two Creatures

Can you add two new creatures to the repository? How about a Hydra? Add minitest tests exercising some of the following concepts:

  • Passing data into initialize
  • Using methods to change the internal state of an instance
  • Using methods to query the internal state of an instance
  • Functionality that necessitates the internal use of an Array

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages