Main Avalanche Network server application. Built with Ruby on Rails.

admin_panel_controller_test.rb 335B

    require 'test_helper' class AdminPanelControllerTest < ActionController::TestCase test "should get dashboard" do get :dashboard assert_response :success end test "should get posts" do get :posts assert_response :success end test "should get users" do get :users assert_response :success end end