Skip to content
Snippets Groups Projects
dashboard_controller_test.rb 246 B
Newer Older
Sébastien Gaya's avatar
Sébastien Gaya committed
require "test_helper"

class Server::DashboardControllerTest < ActionDispatch::IntegrationTest
  include ServerSetup

  def test_index
    VCR.use_cassette(location) do
      get server_root_path
      assert_response(:success)
    end
Sébastien Gaya's avatar
Sébastien Gaya committed
  end
end