Created
March 3, 2009 19:05
-
-
Save lodestone/73459 to your computer and use it in GitHub Desktop.
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 '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