Skip to content

Commit

Permalink
Merge pull request #20 from kkatano/fix-typo
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
willnet authored Sep 26, 2024
2 parents 8c99383 + 250a6b6 commit 21e2305
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ DRYにする行為は常に善だと思われているかもしれないが、
shared_examplesを利用するとコードの重複を削除できるが、書き方によってはかえって可読性を落とすことがある。


例として、引数として渡された曜日に対応した分だけポイントを増やすメソッド`Point#increase_by_day_of_the_week`のテストを`shared_examples`を利用して書いてみる。shard_exampleの定義は別ファイルに書かれているとして、先にshared_examplesを利用する側だけのコードを見てみる。
例として、引数として渡された曜日に対応した分だけポイントを増やすメソッド`Point#increase_by_day_of_the_week`のテストを`shared_examples`を利用して書いてみる。shared_examplesの定義は別ファイルに書かれているとして、先にshared_examplesを利用する側だけのコードを見てみる。

```ruby
RSpec.describe Point, type: :model do
Expand Down

0 comments on commit 21e2305

Please sign in to comment.