Skip to content

Commit 9228b60

Browse files
dgrove-ossrabbah
authored andcommitted
remove test for download of iOS SDK (#478)
core PR 4795 removed the iOS SDK download from nginx.conf; remove cli test that checks that route is available.
1 parent d8a6735 commit 9228b60

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

tests/src/test/scala/system/basic/WskSdkTests.scala

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -83,21 +83,6 @@ class WskSdkTests extends TestHelpers with WskTestHelpers {
8383
}
8484
}
8585

86-
it should "download iOS sdk" in {
87-
val dir = File.createTempFile("wskinstall", ".tmp")
88-
dir.delete()
89-
dir.mkdir() should be(true)
90-
91-
wsk.cli(wskprops.overrides ++ Seq("sdk", "install", "iOS"), workingDir = dir).stdout should include(
92-
"Downloaded OpenWhisk iOS starter app. Unzip 'OpenWhiskIOSStarterApp.zip' and open the project in Xcode.")
93-
94-
val sdk = new File(dir, "OpenWhiskIOSStarterApp.zip")
95-
sdk.exists() should be(true)
96-
sdk.isFile() should be(true)
97-
FileUtils.sizeOf(sdk) should be > 20000L
98-
FileUtils.deleteDirectory(dir)
99-
}
100-
10186
it should "install the bash auto-completion bash script" in {
10287
// Use a temp dir for testing to not disturb user's local folder
10388
val dir = File.createTempFile("wskinstall", ".tmp")

0 commit comments

Comments
 (0)