Added --/++ markers around the dice class.
[ruby_koans.git] / koans / about_dice_project.rb
index a01236a..ce81715 100644 (file)
@@ -1,11 +1,10 @@
 require File.expand_path(File.dirname(__FILE__) + '/edgecase')
 
-class DiceSet
-  attr_reader :values
-  def roll(n)
-    @values = (1..n).map { rand(6) + 1 }
-  end
-end
+# Implement a DiceSet Class here:
+#
+# class DiceSet
+#   code ...
+# end
 
 class AboutDiceProject < EdgeCase::Koan
   def test_can_create_a_dice_set