a11yist/test/controllers/backoffice_controller_test.rb

18 lines
329 B
Ruby
Raw Normal View History

2024-09-22 21:57:05 +02:00
require "test_helper"
class BackofficeControllerTest < ::ControllerTest
2024-09-22 22:49:53 +02:00
teardown do
logout
end
setup do
User.create!(email_address: "test@example.com", password: "password")
2024-09-22 22:49:53 +02:00
login("test@example.com", "password")
end
2024-09-22 21:57:05 +02:00
test "should get show" do
2024-09-22 22:49:53 +02:00
get backoffice_url
2024-09-22 21:57:05 +02:00
assert_response :success
end
end