Sha256: a7a960792cac0817e40232403f6e8345724e4b00dd5f0eb9c9e46b49f4f31161
Contents?: true
Size: 498 Bytes
Versions: 1
Compression:
Stored size: 498 Bytes
Contents
# encoding: utf-8 require 'helper' class TestImplementation < Test::Unit::TestCase context "The example" do should "open the bubble sort implementation" do implementation = Jeka::Implementation.new(File.join(File.dirname(__FILE__), "example", "01_bubble_sort", "cpp")) assert_equal implementation.language, "c++" assert_equal implementation.source, "bubble.cpp" assert_equal implementation.comment, "ImplementaĆ§Ć£o simples em C++" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jeka-0.1.1 | test/test_implementation.rb |