mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 18:19:52 +01:00
13 lines
268 B
Ruby
13 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
|