spec/unit/modulesync/settings_spec.rb in modulesync-0.7.2 vs spec/unit/modulesync/settings_spec.rb in modulesync-0.8.0
- old
+ new
@@ -17,9 +17,9 @@
it { expect(subject.managed?('Rakefile')).to eq false }
it { expect(subject.managed?('Rakefile/foo')).to eq false }
it { expect(subject.managed?('Gemfile')).to eq true }
it { expect(subject.managed?('Gemfile/foo')).to eq true }
it { expect(subject.managed_files([])).to eq ['Gemfile'] }
- it { expect(subject.managed_files(%w(Rakefile Gemfile other_file))).to eq %w(Gemfile other_file) }
+ it { expect(subject.managed_files(%w[Rakefile Gemfile other_file])).to eq %w[Gemfile other_file] }
it { expect(subject.unmanaged_files([])).to eq ['Rakefile'] }
- it { expect(subject.unmanaged_files(%w(Rakefile Gemfile other_file))).to eq ['Rakefile'] }
+ it { expect(subject.unmanaged_files(%w[Rakefile Gemfile other_file])).to eq ['Rakefile'] }
end