Report abuse

1
2
3
4
5
6
7
8
9
10
11
12
13
class Translizzator::Controllers::MainTest < MiniTest::Unit::TestCase

  include Rack::Test::Methods

  def app
    Translizzator::Controllers::Main.new
  end

  def test_index
    get '/'
  end

end