Created
September 21, 2015 13:16
-
-
Save TylerRockwell/a38d489c4ccc4dc6cf44 to your computer and use it in GitHub Desktop.
In Class Challenge 09-21-15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'minitest/autorun' | |
require 'minitest/pride' | |
# Write two classes which inherit from the Vehicle class below. You will also | |
# need to add a method to the Vehicle class during this challenge. | |
class Vehicle | |
def initialize(make, model) | |
@make = make | |
@model = model | |
end | |
def number_of_gears | |
4 | |
end | |
def number_of_tires | |
4 | |
end | |
def describe | |
"This is a #{@make} #{@model}" | |
end | |
end | |
class ElectricCar < Vehicle | |
def number_of_gears | |
1 | |
end | |
end | |
class Motorcycle < Vehicle | |
def number_of_tires | |
2 | |
end | |
end | |
class TrikeMotorcycle < Motorcycle | |
def number_of_tires | |
3 | |
end | |
end | |
# WRITE YOUR CODE HERE. | |
class InheritanceChallenge < MiniTest::Test | |
def test_classes_exist | |
assert ElectricCar | |
assert Motorcycle | |
end | |
def test_classes_inherit | |
assert_equal Vehicle, ElectricCar.superclass | |
assert_equal Vehicle, Motorcycle.superclass | |
end | |
def test_initializer_takes_make_and_model | |
assert ElectricCar.new("Nissan", "Leaf") | |
assert Vehicle.new("Honda", "CTX700N") | |
end | |
def test_describe | |
assert_equal "This is a Nissan Leaf", ElectricCar.new("Nissan", "Leaf").describe | |
assert_equal "This is a Honda CTX700N", Motorcycle.new("Honda", "CTX700N").describe | |
end | |
def test_number_of_tires | |
assert_equal 4, ElectricCar.new("Nissan", "Leaf").number_of_tires | |
assert_equal 2, Motorcycle.new("Honda", "CTX700N").number_of_tires | |
end | |
def test_number_of_gears | |
assert_equal 1, ElectricCar.new("Nissan", "Leaf").number_of_gears | |
assert_equal 4, Motorcycle.new("Honda", "CTX700N").number_of_gears | |
end | |
def test_trike | |
assert TrikeMotorcycle | |
assert_equal Vehicle, TrikeMotorcycle.superclass.superclass | |
assert_equal 3, TrikeMotorcycle.new("Can-Am", "Spyder").number_of_tires | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment