

not:

require 'test/unit'
class BillsPlayerTest < Test::Unit::TestCase
def test_to_is_a_tad_bit_hyped
end
end
terrell_owens = BillsPlayer.new
terrell_owens.overpaid?
assert
assert_equal "wide receiver",
terrell_owens.position
assert_not_nil terrell_owens.number
assert_raises InterceptionError do
terrell_owens.miss_route!
end
class BillsPlayerTest < Test::Unit::TestCase
def test_to_is_a_tad_bit_hyped
terrell_owens = BillsPlayer.new
assert terrell_owens.overpaid?
end
end
class BillsPlayerTest < Test::Unit::TestCase
def setup
@terrell_owens = BillsPlayer.new
end
def test_to_is_a_tad_bit_hyped
assert @terrell_owens.overpaid?
end
def teardown
# bills lose, again :[
end
end