Sha256: 061ef642cafd3b8f76709b65672543dcb8999b4538f0d30605f01179e5c0133c

Contents?: true

Size: 437 Bytes

Versions: 1

Compression:

Stored size: 437 Bytes

Contents

require 'helper'

class TestTest < Test::Unit::TestCase
  
  context "The example" do
    
    should "open the bubble sort tests" do
      test = Jeka::Test.new(File.join(File.dirname(__FILE__), "example", "01_bubble_sort", "_tests", "test_01.yaml"))
      assert_equal test.name, "Sequencia decrescente"
      assert_equal test.input, "9 9 8 7 6 5 4 3 2 1"
      assert_equal test.output, "1 2 3 4 5 6 7 8 9"
    end
    
  end
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jeka-0.1.1 test/test_test.rb