Skip to content

Commit

Permalink
Restore trivial example
Browse files Browse the repository at this point in the history
  • Loading branch information
marcandre committed Jun 5, 2020
1 parent 841df69 commit 4f05d41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions features/clear_examples.feature
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Feature: Running specs multiple times with different runner options in the same
RSpec.describe "truth" do
describe true do
it "is truthy" do
expect(true).to be(true)
expect(true).to be_truthy
end
it "is not falsy" do
Expand All @@ -48,7 +48,7 @@ Feature: Running specs multiple times with different runner options in the same
end
it "is truthy" do
expect(false).not_to be(true)
expect(false).not_to be_truthy
end
end
end
Expand Down

0 comments on commit 4f05d41

Please sign in to comment.