Sha256: 8b09f8af338a9e00c922d2e0fdbae5e5294ca6f88e31682fe5d9f20ed668f74a
Contents?: true
Size: 576 Bytes
Versions: 30
Compression:
Stored size: 576 Bytes
Contents
require 'rails_helper' module MnoEnterprise RSpec.describe Jpi::V1::AppInstancesSyncController, type: :routing do routes { MnoEnterprise::Engine.routes } it "routes to #index" do expect(get("/jpi/v1/organizations/org-fbba/app_instances_sync")).to route_to("mno_enterprise/jpi/v1/app_instances_sync#index",organization_id: 'org-fbba') end it "routes to #create" do expect(post("/jpi/v1/organizations/org-fbba/app_instances_sync")).to route_to("mno_enterprise/jpi/v1/app_instances_sync#create",organization_id: 'org-fbba') end end end
Version data entries
30 entries across 30 versions & 1 rubygems