9 lines
183 B
Ruby
9 lines
183 B
Ruby
|
|
require "test_helper"
|
||
|
|
|
||
|
|
class BackofficeControllerTest < ActionDispatch::IntegrationTest
|
||
|
|
test "should get show" do
|
||
|
|
get backoffice_show_url
|
||
|
|
assert_response :success
|
||
|
|
end
|
||
|
|
end
|