foodsoft/spec/controllers/application_controller_spec.rb

13 lines
321 B
Ruby
Raw Normal View History

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