Created
March 2, 2015 14:20
-
-
Save jesseract/1c678a9c346454f0004f to your computer and use it in GitHub Desktop.
3/2_challenge
This file contains hidden or 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 a class which has an initialize method, a reader method, a private | |
# method, and a class method. | |
# WRITE YOUR CODE HERE. | |
class Goat | |
def initialize(name) | |
@goat = Goat.new | |
end | |
end | |
class ClassesChallenge < MiniTest::Test | |
def test_class_exists | |
assert Goat | |
end | |
def test_initialize | |
assert Goat.new("Windsong") | |
end | |
def test_reader | |
amalthea = Goat.new("Amalthea") | |
assert_equal "Amalthea", amalthea.name | |
assert_raises(NoMethodError) do | |
amalthea.name = "Djali" | |
end | |
end | |
def test_private | |
billy = Goat.new("Billy Whiskers") | |
assert_raises(NoMethodError) do | |
billy.hate_cats | |
end | |
assert_equal "I hate cats!", billy.send(:hate_cats) | |
end | |
def test_class | |
assert_equal 4, Goat.number_of_legs | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment