Skip to content
This repository has been archived by the owner on Nov 30, 2024. It is now read-only.

Commit

Permalink
Fixed errant capitalization of Ruby on code block
Browse files Browse the repository at this point in the history
Updated codeblock markers to change "Ruby" to "ruby" so that the syntax highlighting functions properly.
  • Loading branch information
threeplanetssoftware authored Jan 29, 2024
1 parent 236405c commit 190299f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions features/example_groups/shared_examples.feature
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ Feature: Using shared examples

Scenario: Shared examples are nestable by context
Given a file named "context_specific_examples_spec.rb" with:
"""Ruby
"""ruby
RSpec.describe "shared examples" do
context "per context" do
Expand All @@ -296,7 +296,7 @@ Feature: Using shared examples

Scenario: Shared examples are accessible from offspring contexts
Given a file named "context_specific_examples_spec.rb" with:
"""Ruby
"""ruby
RSpec.describe "shared examples" do
shared_examples "shared examples are nestable" do
specify { expect(true).to eq true }
Expand All @@ -319,7 +319,7 @@ Feature: Using shared examples

Scenario: Shared examples are isolated per context
Given a file named "isolated_shared_examples_spec.rb" with:
"""Ruby
"""ruby
RSpec.describe "shared examples" do
context do
shared_examples "shared examples are isolated" do
Expand Down

0 comments on commit 190299f

Please sign in to comment.