debshots/test/controllers/welcome_controller_test.rb
Christoph Haas f28c637d10 Welcome controller added
Can be used for main index, about page etc.
2013-07-27 01:23:08 +02:00

9 lines
164 B
Ruby

require 'test_helper'
class WelcomeControllerTest < ActionController::TestCase
test "should get index" do
get :index
assert_response :success
end
end