summaryrefslogtreecommitdiff
path: root/spec/lib
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2015-12-22 13:56:54 +0100
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-01-14 12:48:13 +0100
commit304c39b6dc5878664c0dace4e3af6bdd2fa395f0 (patch)
tree1391422978e075af20806d7ea19dd12e42ac6ad6 /spec/lib
parent1cc26e0f0e2ef62fecb688e45bc51c66c8fdf0a7 (diff)
downloadgitlab-ce-304c39b6dc5878664c0dace4e3af6bdd2fa395f0.tar.gz
Fix rubocop offenses in `StringPath` specs
Diffstat (limited to 'spec/lib')
-rw-r--r--spec/lib/gitlab/string_path_spec.rb30
1 files changed, 19 insertions, 11 deletions
diff --git a/spec/lib/gitlab/string_path_spec.rb b/spec/lib/gitlab/string_path_spec.rb
index c1722977576..8290aab7701 100644
--- a/spec/lib/gitlab/string_path_spec.rb
+++ b/spec/lib/gitlab/string_path_spec.rb
@@ -72,19 +72,23 @@ describe Gitlab::StringPath do
it { is_expected.to be_an_instance_of Array }
it { is_expected.to all(be_an_instance_of described_class) }
- it { is_expected.to contain_exactly string_path('path/dir_1/file_1'),
- string_path('path/dir_1/file_b'),
- string_path('path/dir_1/subdir/'),
- string_path('path/dir_1/subdir/subfile') }
+ it do
+ is_expected.to contain_exactly string_path('path/dir_1/file_1'),
+ string_path('path/dir_1/file_b'),
+ string_path('path/dir_1/subdir/'),
+ string_path('path/dir_1/subdir/subfile')
+ end
end
describe '#children' do
subject { |example| path(example).children }
it { is_expected.to all(be_an_instance_of described_class) }
- it { is_expected.to contain_exactly string_path('path/dir_1/file_1'),
- string_path('path/dir_1/file_b'),
- string_path('path/dir_1/subdir/') }
+ it do
+ is_expected.to contain_exactly string_path('path/dir_1/file_1'),
+ string_path('path/dir_1/file_b'),
+ string_path('path/dir_1/subdir/')
+ end
end
describe '#files' do
@@ -92,8 +96,10 @@ describe Gitlab::StringPath do
it { is_expected.to all(be_file) }
it { is_expected.to all(be_an_instance_of described_class) }
- it { is_expected.to contain_exactly string_path('path/dir_1/file_1'),
- string_path('path/dir_1/file_b') }
+ it do
+ is_expected.to contain_exactly string_path('path/dir_1/file_1'),
+ string_path('path/dir_1/file_b')
+ end
end
describe '#directories' do
@@ -109,8 +115,10 @@ describe Gitlab::StringPath do
it { is_expected.to all(be_directory) }
it { is_expected.to all(be_an_instance_of described_class) }
- it { is_expected.to contain_exactly string_path('path/dir_1/subdir/'),
- string_path('path/dir_1/../') }
+ it do
+ is_expected.to contain_exactly string_path('path/dir_1/subdir/'),
+ string_path('path/dir_1/../')
+ end
end
end