mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
30 lines
516 B
Ruby
30 lines
516 B
Ruby
require 'test_helper'
|
|
|
|
class AdminControllerTest < ActionController::TestCase
|
|
test "should get dashboard" do
|
|
get :dashboard
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get universes" do
|
|
get :universes
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get characters" do
|
|
get :characters
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get locations" do
|
|
get :locations
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get items" do
|
|
get :items
|
|
assert_response :success
|
|
end
|
|
|
|
end
|