@@ -44,16 +44,17 @@ func TestAccGitlabProject_basic(t *testing.T) {
44
44
MergeMethod : gitlab .FastForwardMerge ,
45
45
OnlyAllowMergeIfPipelineSucceeds : true ,
46
46
OnlyAllowMergeIfAllDiscussionsAreResolved : true ,
47
- SquashOption : gitlab .SquashOptionDefaultOff ,
48
- AllowMergeOnSkippedPipeline : false ,
49
- Archived : false , // needless, but let's make this explicit
50
- PackagesEnabled : true ,
51
- PagesAccessLevel : gitlab .PublicAccessControl ,
52
- BuildCoverageRegex : "foo" ,
53
- IssuesTemplate : "" ,
54
- MergeRequestsTemplate : "" ,
55
- CIConfigPath : ".gitlab-ci.yml@mynamespace/myproject" ,
56
- CIForwardDeploymentEnabled : true ,
47
+ SquashOption : gitlab .SquashOptionDefaultOff ,
48
+ AllowMergeOnSkippedPipeline : false ,
49
+ Archived : false , // needless, but let's make this explicit
50
+ PackagesEnabled : true ,
51
+ PrintingMergeRequestLinkEnabled : true ,
52
+ PagesAccessLevel : gitlab .PublicAccessControl ,
53
+ BuildCoverageRegex : "foo" ,
54
+ IssuesTemplate : "" ,
55
+ MergeRequestsTemplate : "" ,
56
+ CIConfigPath : ".gitlab-ci.yml@mynamespace/myproject" ,
57
+ CIForwardDeploymentEnabled : true ,
57
58
}
58
59
59
60
defaultsMainBranch = defaults
@@ -91,6 +92,7 @@ func TestAccGitlabProject_basic(t *testing.T) {
91
92
SharedRunnersEnabled : false ,
92
93
Visibility : gitlab .PublicVisibility ,
93
94
MergeMethod : gitlab .FastForwardMerge ,
95
+ PrintingMergeRequestLinkEnabled : true ,
94
96
OnlyAllowMergeIfPipelineSucceeds : true ,
95
97
OnlyAllowMergeIfAllDiscussionsAreResolved : true ,
96
98
SquashOption : gitlab .SquashOptionDefaultOn ,
@@ -482,6 +484,7 @@ func TestAccGitlabProject_willError(t *testing.T) {
482
484
SharedRunnersEnabled : true ,
483
485
Visibility : gitlab .PublicVisibility ,
484
486
MergeMethod : gitlab .FastForwardMerge ,
487
+ PrintingMergeRequestLinkEnabled : true ,
485
488
OnlyAllowMergeIfPipelineSucceeds : true ,
486
489
OnlyAllowMergeIfAllDiscussionsAreResolved : true ,
487
490
SquashOption : gitlab .SquashOptionDefaultOff ,
@@ -589,11 +592,12 @@ func TestAccGitlabProject_transfer(t *testing.T) {
589
592
MergeMethod : gitlab .NoFastForwardMerge ,
590
593
OnlyAllowMergeIfPipelineSucceeds : false ,
591
594
OnlyAllowMergeIfAllDiscussionsAreResolved : false ,
592
- SquashOption : gitlab .SquashOptionDefaultOff ,
593
- PackagesEnabled : true ,
594
- PagesAccessLevel : gitlab .PrivateAccessControl ,
595
- BuildCoverageRegex : "foo" ,
596
- CIForwardDeploymentEnabled : true ,
595
+ SquashOption : gitlab .SquashOptionDefaultOff ,
596
+ PackagesEnabled : true ,
597
+ PrintingMergeRequestLinkEnabled : true ,
598
+ PagesAccessLevel : gitlab .PrivateAccessControl ,
599
+ BuildCoverageRegex : "foo" ,
600
+ CIForwardDeploymentEnabled : true ,
597
601
}
598
602
599
603
resource .Test (t , resource.TestCase {
0 commit comments