Skip to content

Instantly share code, notes, and snippets.

@TiagoTi
Last active August 29, 2015 14:10
Show Gist options
  • Save TiagoTi/88beaee1aafb9f1091f2 to your computer and use it in GitHub Desktop.
Save TiagoTi/88beaee1aafb9f1091f2 to your computer and use it in GitHub Desktop.
error
require "minitest/autorun"
require_relative "../lib/conversor_de_numero_romano.rb"
class TestConversorDeNumeroRomano < MiniTest::Unit::TestCase
def teste_deve_entender_o_simbolo_I
romano = ConversorDeNumeroRomano.new
numero = romano.converte 'I'
assert_equal 1, numero
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment