Skip to content

Commit 3e2a2dd

Browse files
committed
Add basic tests for previously pending specs
1 parent 5ca3c32 commit 3e2a2dd

File tree

68 files changed

+204
-68
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+204
-68
lines changed

spec/channels/better_together/messages_channel_spec.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
module BetterTogether
66
RSpec.describe MessagesChannel, type: :channel do
7-
pending "add some examples to (or delete) #{__FILE__}"
7+
it 'exists' do
8+
expect(described_class).to be
9+
end
810
end
911
end

spec/helpers/better_together/calls_for_interest_helper_spec.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
# end
1515
module BetterTogether
1616
RSpec.describe CallsForInterestHelper, type: :helper do
17-
pending "add some examples to (or delete) #{__FILE__}"
17+
it 'exists' do
18+
expect(described_class).to be
19+
end
1820
end
1921
end

spec/helpers/better_together/communities_helper_spec.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
# end
1515
module BetterTogether
1616
RSpec.describe CommunitiesHelper, type: :helper do
17-
pending "add some examples to (or delete) #{__FILE__}"
17+
it 'exists' do
18+
expect(described_class).to be
19+
end
1820
end
1921
end

spec/helpers/better_together/content/blocks_helper_spec.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
# end
1515
module BetterTogether
1616
RSpec.describe Content::BlocksHelper, type: :helper do
17-
pending "add some examples to (or delete) #{__FILE__}"
17+
it 'exists' do
18+
expect(described_class).to be
19+
end
1820
end
1921
end

spec/helpers/better_together/conversations_helper_spec.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
# end
1515
module BetterTogether
1616
RSpec.describe ConversationsHelper, type: :helper do
17-
pending "add some examples to (or delete) #{__FILE__}"
17+
it 'exists' do
18+
expect(described_class).to be
19+
end
1820
end
1921
end

spec/helpers/better_together/geography/continents_helper_spec.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
# end
1515
module BetterTogether
1616
RSpec.describe ::BetterTogether::Geography::ContinentsHelper, type: :helper do
17-
pending "add some examples to (or delete) #{__FILE__}"
17+
it 'exists' do
18+
expect(described_class).to be
19+
end
1820
end
1921
end

spec/helpers/better_together/geography/countries_helper_spec.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
# end
1515
module BetterTogether
1616
RSpec.describe ::BetterTogether::Geography::CountriesHelper, type: :helper do
17-
pending "add some examples to (or delete) #{__FILE__}"
17+
it 'exists' do
18+
expect(described_class).to be
19+
end
1820
end
1921
end

spec/helpers/better_together/geography/maps_helper_spec.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
# end
1515
module BetterTogether
1616
RSpec.describe Geography::MapsHelper, type: :helper do
17-
pending "add some examples to (or delete) #{__FILE__}"
17+
it 'exists' do
18+
expect(described_class).to be
19+
end
1820
end
1921
end

spec/helpers/better_together/geography/region_settlements_helper_spec.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
# end
1515
module BetterTogether
1616
RSpec.describe ::BetterTogether::Geography::RegionSettlementsHelper, type: :helper do
17-
pending "add some examples to (or delete) #{__FILE__}"
17+
it 'exists' do
18+
expect(described_class).to be
19+
end
1820
end
1921
end

spec/helpers/better_together/geography/regions_helper_spec.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
# end
1515
module BetterTogether
1616
RSpec.describe ::BetterTogether::Geography::RegionsHelper, type: :helper do
17-
pending "add some examples to (or delete) #{__FILE__}"
17+
it 'exists' do
18+
expect(described_class).to be
19+
end
1820
end
1921
end

0 commit comments

Comments
 (0)