Sha256: 7e46a991b6fdf6f61e4252925c76ab0a84d75364ab39f31c085d1c6d89e78697

Contents?: true

Size: 558 Bytes

Versions: 3

Compression:

Stored size: 558 Bytes

Contents

require './test/test_helper'
require 'postmon_cli/wrapper'

class WrapperTest < Minitest::Test
  def setup
    @cep = PostmonCli::Wrapper.get_cep('49097320').to_s
    @cidade = PostmonCli::Wrapper.get_cidade('SE', 'Aracaju').to_s
    @estado = PostmonRuby::GemOutput.estado('SE').to_s
  end

  def test_get_cep
    assert_match(/Logradouro|Bairro|Complemento|Cidade|Estado|Cep/, @cep)
  end

  def test_get_cidade
    assert_match(/Area_km2|Codigo_ibge/, @cidade)
  end

  def test_get_estado
    assert_match(/Area_km2|Codigo_ibge|Nome/, @estado)
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
postmon_cli-0.0.3 test/lib/wrapper_test.rb
postmon_cli-0.0.2 test/lib/wrapper_test.rb
postmon_cli-0.0.1 test/lib/wrapper_test.rb