mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-17 15:50:13 +01:00
14 lines
250 B
Ruby
14 lines
250 B
Ruby
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
|
|
|
class NotesControllerTest < ActionController::TestCase
|
|
|
|
def setup
|
|
end
|
|
|
|
def test_get_notes_page
|
|
login_as :admin_user
|
|
get :index
|
|
assert_response 200
|
|
end
|
|
|
|
end
|