mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 09:36:04 +01:00
14 lines
268 B
Ruby
14 lines
268 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require "rails_helper"
|
||
|
|
||
|
describe MetricsController, type: :controller do
|
||
|
describe "#show" do
|
||
|
subject { get :show }
|
||
|
|
||
|
it "returns the metrics" do
|
||
|
expect(subject.body).to include "retrospring_version_info"
|
||
|
end
|
||
|
end
|
||
|
end
|