@@ -44,15 +44,16 @@ 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" ,
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
+ PrintingMergeRequestLinkEnabled : true ,
53
+ BuildCoverageRegex : "foo" ,
54
+ IssuesTemplate : "" ,
55
+ MergeRequestsTemplate : "" ,
56
+ CIConfigPath : ".gitlab-ci.yml@mynamespace/myproject" ,
56
57
}
57
58
58
59
defaultsMainBranch = defaults
@@ -90,6 +91,7 @@ func TestAccGitlabProject_basic(t *testing.T) {
90
91
SharedRunnersEnabled : false ,
91
92
Visibility : gitlab .PublicVisibility ,
92
93
MergeMethod : gitlab .FastForwardMerge ,
94
+ PrintingMergeRequestLinkEnabled : true ,
93
95
OnlyAllowMergeIfPipelineSucceeds : true ,
94
96
OnlyAllowMergeIfAllDiscussionsAreResolved : true ,
95
97
SquashOption : gitlab .SquashOptionDefaultOn ,
@@ -463,6 +465,7 @@ func TestAccGitlabProject_willError(t *testing.T) {
463
465
SharedRunnersEnabled : true ,
464
466
Visibility : gitlab .PublicVisibility ,
465
467
MergeMethod : gitlab .FastForwardMerge ,
468
+ PrintingMergeRequestLinkEnabled : true ,
466
469
OnlyAllowMergeIfPipelineSucceeds : true ,
467
470
OnlyAllowMergeIfAllDiscussionsAreResolved : true ,
468
471
SquashOption : gitlab .SquashOptionDefaultOff ,
@@ -569,10 +572,11 @@ func TestAccGitlabProject_transfer(t *testing.T) {
569
572
MergeMethod : gitlab .NoFastForwardMerge ,
570
573
OnlyAllowMergeIfPipelineSucceeds : false ,
571
574
OnlyAllowMergeIfAllDiscussionsAreResolved : false ,
572
- SquashOption : gitlab .SquashOptionDefaultOff ,
573
- PackagesEnabled : true ,
574
- PagesAccessLevel : gitlab .PrivateAccessControl ,
575
- BuildCoverageRegex : "foo" ,
575
+ SquashOption : gitlab .SquashOptionDefaultOff ,
576
+ PackagesEnabled : true ,
577
+ PrintingMergeRequestLinkEnabled : true ,
578
+ PagesAccessLevel : gitlab .PrivateAccessControl ,
579
+ BuildCoverageRegex : "foo" ,
576
580
}
577
581
578
582
resource .Test (t , resource.TestCase {
0 commit comments