cirandas.net

ref: master

plugins/lattes_curriculum/test/unit/html_parser_test.rb


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#!/bin/env ruby
# encoding: utf-8

require "test_helper"

class HtmlParserTest < ActiveSupport::TestCase

  def setup
    @parser = Html_parser.new
  end

  should 'be not nil the instance' do
    assert_not_nil @parser
  end
end