foodsoft/spec/controllers/application_controller_spec.rb
Tobias Kneuker d5b710dd9e
Some checks failed
continuous-integration/drone/push Build is failing
auth concern spec'd
2022-10-11 16:09:18 +02:00

12 lines
339 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe ApplicationController, type: :controller do
describe 'current' do
it 'returns current ApplicationController' do
ApplicationController.new.send(:store_controller)
expect(ApplicationController.current).to be_instance_of ApplicationController
end
end
end