Logs controller added

This commit is contained in:
Christoph Haas 2016-08-23 19:01:01 +02:00
parent 9ad5a05914
commit 230f5ec213
9 changed files with 66 additions and 0 deletions

View file

@ -0,0 +1,9 @@
require "test_helper"
class LogsControllerTest < ActionController::TestCase
def test_index
get :index
assert_response :success
end
end

View file

@ -0,0 +1,7 @@
require "test_helper"
class LogsHelperTest < ActionView::TestCase
def test_sanity
flunk "Need real tests"
end
end