debian-mirror-gitlab/doorkeeper/spec/controllers/application_metal_controller.rb
2020-01-04 02:51:38 +05:30

10 lines
221 B
Ruby

require "spec_helper_integration"
describe Doorkeeper::ApplicationMetalController do
it "lazy run hooks" do
i = 0
ActiveSupport.on_load(:doorkeeper_metal_controller) { i += 1 }
expect(i).to eq 1
end
end