aboutsummaryrefslogtreecommitdiff
path: root/test/controllers/mini_environments_controller_test.rb
blob: 81761433c30b2f6608473477ea446f163b7afb02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'integration_test_helper'

class MiniEnvironmentsControllerTest < ActionDispatch::IntegrationTest
  setup do
    login_as User.new
  end

  test 'show' do
    MiniEnvironment.create

    get mini_environment_path
  end
end