Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/enumerable/collect_concat_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
require_relative 'shared/collect_concat'

describe "Enumerable#collect_concat" do
it_behaves_like :enumerable_collect_concat , :collect_concat
it_behaves_like :enumerable_collect_concat, :collect_concat
end
2 changes: 1 addition & 1 deletion core/enumerable/collect_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
require_relative 'shared/collect'

describe "Enumerable#collect" do
it_behaves_like :enumerable_collect , :collect
it_behaves_like :enumerable_collect, :collect
end
2 changes: 1 addition & 1 deletion core/enumerable/detect_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
require_relative 'shared/find'

describe "Enumerable#detect" do
it_behaves_like :enumerable_find , :detect
it_behaves_like :enumerable_find, :detect
end
2 changes: 1 addition & 1 deletion core/enumerable/entries_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
require_relative 'shared/entries'

describe "Enumerable#entries" do
it_behaves_like :enumerable_entries , :entries
it_behaves_like :enumerable_entries, :entries
end
2 changes: 1 addition & 1 deletion core/enumerable/filter_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
require_relative 'shared/find_all'

describe "Enumerable#filter" do
it_behaves_like(:enumerable_find_all , :filter)
it_behaves_like(:enumerable_find_all, :filter)
end
2 changes: 1 addition & 1 deletion core/enumerable/find_all_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
require_relative 'shared/find_all'

describe "Enumerable#find_all" do
it_behaves_like :enumerable_find_all , :find_all
it_behaves_like :enumerable_find_all, :find_all
end
2 changes: 1 addition & 1 deletion core/enumerable/find_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
require_relative 'shared/find'

describe "Enumerable#find" do
it_behaves_like :enumerable_find , :find
it_behaves_like :enumerable_find, :find
end
2 changes: 1 addition & 1 deletion core/enumerable/flat_map_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
require_relative 'shared/collect_concat'

describe "Enumerable#flat_map" do
it_behaves_like :enumerable_collect_concat , :flat_map
it_behaves_like :enumerable_collect_concat, :flat_map
end
2 changes: 1 addition & 1 deletion core/enumerable/map_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
require_relative 'shared/collect'

describe "Enumerable#map" do
it_behaves_like :enumerable_collect , :map
it_behaves_like :enumerable_collect, :map
end
2 changes: 1 addition & 1 deletion core/enumerable/select_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
require_relative 'shared/find_all'

describe "Enumerable#select" do
it_behaves_like :enumerable_find_all , :select
it_behaves_like :enumerable_find_all, :select
end
2 changes: 1 addition & 1 deletion core/enumerable/to_a_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
require_relative 'shared/entries'

describe "Enumerable#to_a" do
it_behaves_like :enumerable_entries , :to_a
it_behaves_like :enumerable_entries, :to_a
end
2 changes: 1 addition & 1 deletion core/kernel/is_a_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
require_relative 'shared/kind_of'

describe "Kernel#is_a?" do
it_behaves_like :kernel_kind_of , :is_a?
it_behaves_like :kernel_kind_of, :is_a?
end
2 changes: 1 addition & 1 deletion core/kernel/kind_of_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
require_relative 'shared/kind_of'

describe "Kernel#kind_of?" do
it_behaves_like :kernel_kind_of , :kind_of?
it_behaves_like :kernel_kind_of, :kind_of?
end
Loading