Skip to content

Commit b97a69c

Browse files
committed
Prep for unit test #435
1 parent 741ea7d commit b97a69c

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

public/Export-AdfToArmTemplate.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function Export-AdfToArmTemplate {
99
[parameter(Mandatory = $false)]
1010
[String] $ResourceGroup = 'abcxyz',
1111
[parameter(Mandatory = $false)]
12-
[String] $AdfUtilitiesVersion = '0.1.6',
12+
[String] $AdfUtilitiesVersion = '1.0.2',
1313
[parameter(Mandatory = $false)]
1414
[String] $OutputFolder = 'ArmTemplate'
1515
)

test/Export-AdfToArmTemplate.Tests.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ InModuleScope azure.datafactory.tools {
3636
Describe 'Export-AdfToArmTemplate' -Tag 'Unit' {
3737

3838
It 'Should exist' {
39-
{ Get-Command -Name 'Publish-AdfV2UsingArm' -ErrorAction Stop } | Should -Not -Throw
39+
{ Get-Command -Name 'Export-AdfToArmTemplate' -ErrorAction Stop } | Should -Not -Throw
4040
}
4141
It 'Should completed successfully' {
4242
{ Export-AdfToArmTemplate -RootFolder $script:RootFolder } | Should -Not -Throw
+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "tr_without_pipeline",
3+
"properties": {
4+
"description": "Backend will fail with this",
5+
"annotations": [],
6+
"runtimeState": "Started",
7+
"pipelines": [
8+
],
9+
"type": "ScheduleTrigger",
10+
"typeProperties": {
11+
"recurrence": {
12+
"frequency": "Week",
13+
"interval": 1,
14+
"startTime": "2023-02-15T19:32:00",
15+
"timeZone": "FLE Standard Time",
16+
"schedule": {
17+
"minutes": [
18+
11
19+
],
20+
"hours": [
21+
5
22+
],
23+
"weekDays": [
24+
"Thursday",
25+
"Friday",
26+
"Monday",
27+
"Tuesday",
28+
"Wednesday"
29+
]
30+
}
31+
}
32+
}
33+
}
34+
}

0 commit comments

Comments
 (0)