Sha256: 725655444746412781ebc3f48b1f27d9e238f6c308d62d93bb4e34a95ac22b0b
Contents?: true
Size: 602 Bytes
Versions: 22
Compression:
Stored size: 602 Bytes
Contents
require 'pact_broker/ui/controllers/can_i_deploy' module PactBroker module UI module Controllers describe CanIDeploy do let(:app) { CanIDeploy } describe "GET" do before do TestDataBuilder.new .create_pact_with_hierarchy("Foo", "1", "Bar") .create_consumer_version_tag("main") end subject { get("/Foo/latest-version/main/can-i-deploy/to/prod") } it "renders the matrix page" do expect(subject.body).to include "The Matrix" end end end end end end
Version data entries
22 entries across 22 versions & 1 rubygems