Skip to content

Instantly share code, notes, and snippets.

@lodestone
Created March 3, 2009 19:05
Show Gist options
  • Save lodestone/73459 to your computer and use it in GitHub Desktop.
Save lodestone/73459 to your computer and use it in GitHub Desktop.
require 'test/unit'
class TestQ
def count; 1; end
def question(question, type, options={})
'<li>What is your favorite color?</li>'
end
def questions(question_list, types=[])
tag = ''
types.each {|type| tag += question(question_list[self.count], type)}
tag
end
def questions2(question_list, types=[])
return types.inject('') {|tag, type| tag << question(question_list[self.count], type); tag}
end
end
class QuestionsTest < Test::Unit::TestCase
def test_question
quizmaster = TestQ.new
question_list = { 1 => 'Ruby Ruby Ruby, Soho.' }
types = [:number, :select]
assert_equal quizmaster.questions(question_list, types),
quizmaster.questions2(question_list, types)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment