Sha256: b3ad5d5c75a33a4b31815fde8a34a39a9be9d633141ae360a7377a66c1657d8e
Contents?: true
Size: 500 Bytes
Versions: 30
Compression:
Stored size: 500 Bytes
Contents
require "rails_helper" module MnoEnterprise RSpec.describe StatusController, type: :routing do routes { MnoEnterprise::Engine.routes } it 'routes to #ping' do expect(get('/ping')).to route_to('mno_enterprise/status#ping') end it 'routes to #version' do expect(get('/version')).to route_to('mno_enterprise/status#version') end it 'routes to #health_check' do expect(get('/health_check')).to route_to('health_check/health_check#index') end end end
Version data entries
30 entries across 30 versions & 1 rubygems