Jay McGavren's Journal

2009-08-20

#songsincode #songsintests

In response to a Twitter meme… Sarah McLachlan’s “Ice Cream”.

require 'test/unit'

class TestYou < Test::Unit::TestCase
  def test_you
    you = Object.new
    ice_cream = Object.new
    assert you.love > ice_cream
    anything_else = Object.new
    assert you.love > anything_else
    here = ['a', 'b']
    here.each {|body| assert_respond_to(body, :fight)}
  end
end
comments powered by Disqus