test/test_conv.rb in conv-0.0.0 vs test/test_conv.rb in conv-0.0.1

- old
+ new

@@ -1,7 +1,13 @@ require 'helper' class TestConv < Test::Unit::TestCase - should "probably rename this file and start testing for real" do - flunk "hey buddy, you should probably rename this file and start testing for real" + context "An array" do + setup do + @ar = [1,2,3,4,5] + end + should "respond to rand" do + assert @ar.respond_to?('rand') + end end + end