@@ -37,14 +37,6 @@ public function provideValidOptions()
3737 'bucket ' => 'bucket ' ,
3838 'prefix ' => 'prefix/path ' ,
3939 ]];
40-
41- // yield 'options' => [[
42- // 'client' => 'my_client',
43- // 'bucket' => 'bucket',
44- // 'options' => [
45- // 'ServerSideEncryption' => 'AES256',
46- // ],
47- // ]];
4840 }
4941
5042 /**
@@ -58,27 +50,4 @@ public function testCreateDefinition($options)
5850
5951 $ this ->assertSame (S3FilesystemV2::class, $ this ->createBuilder ()->createDefinition ($ options )->getClass ());
6052 }
61-
62- // public function testOptionsBehavior()
63- // {
64- // if (!class_exists(S3FilesystemV2::class)) {
65- // $this->markTestSkipped();
66- // }
67- //
68- // $definition = $this->createBuilder()->createDefinition([
69- // 'client' => 'my_client',
70- // 'bucket' => 'bucket',
71- // 'prefix' => 'prefix/path',
72- // 'options' => [
73- // 'ServerSideEncryption' => 'AES256',
74- // ],
75- // ]);
76- //
77- // $this->assertSame(S3FilesystemV2::class, $definition->getClass());
78- // $this->assertInstanceOf(Reference::class, $definition->getArgument(0));
79- // $this->assertSame('my_client', (string) $definition->getArgument(0));
80- // $this->assertSame('bucket', $definition->getArgument(1));
81- // $this->assertSame('prefix/path', $definition->getArgument(2));
82- // $this->assertSame(['ServerSideEncryption' => 'AES256'], $definition->getArgument(3));
83- // }
8453}
0 commit comments