mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Merge pull request #731 from fog/conditional_mock_fix
Added check if Fog.mock! should be used in AWS tests
This commit is contained in:
commit
733fb7f2ac
5 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
Fog.mock!
|
||||
Fog.mock! if ENV['FOG_MOCK']
|
||||
|
||||
Shindo.tests("Storage[:aws] | directory", [:aws]) do
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Fog.mock!
|
||||
Fog.mock! if ENV['FOG_MOCK']
|
||||
|
||||
Shindo.tests("Storage[:aws] | file", [:aws]) do
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Fog.mock!
|
||||
Fog.mock! if ENV['FOG_MOCK']
|
||||
|
||||
Shindo.tests("Storage[:aws] | files", [:aws]) do
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Fog.mock!
|
||||
Fog.mock! if ENV['FOG_MOCK']
|
||||
|
||||
Shindo.tests("Storage[:aws] | version", [:aws]) do
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Fog.mock!
|
||||
Fog.mock! if ENV['FOG_MOCK']
|
||||
|
||||
Shindo.tests("Storage[:aws] | versions", [:aws]) do
|
||||
|
||||
|
|
Loading…
Reference in a new issue