Skip to content

Commit

Permalink
Merge branch 'SonicGarden:main' into level3
Browse files Browse the repository at this point in the history
  • Loading branch information
yasu551 authored Nov 30, 2024
2 parents 2d4c398 + 91fdf05 commit b7aadc8
Show file tree
Hide file tree
Showing 5 changed files with 18,663 additions and 11 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,9 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.5
- name: Install RubyCritic
run: gem install rubycritic
- name: Run tests
run: ruby test/sg_strange_calendar_test.rb --no-plugins
- name: Run RubyCritic
run: rubycritic lib/*.rb -f console
29 changes: 18 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,22 +218,29 @@ Mo
テストコードがすべてパス(またはskip)すること。テストコードは以下のようにして実行できる。

```
$ ruby test/sg_strange_calendar_test.rb --no-plugins
Run options: --seed 63980
# Running:
SSS.S.SSS
FSSSSFSSSSS
Finished in 0.026042s, 422.3946 runs/s, 76.7990 assertions/s.
1) Failure:
SgStrangeCalendarTest#test_level_1_for_2024 [test/sg_strange_calendar_test.rb:23]:
# 省略
2) Failure:
SgStrangeCalendarTest#test_level_1_for_2025 [test/sg_strange_calendar_test.rb:43]:
# 省略
Finished in 0.000450s, 19999.9978 runs/s, 4444.4439 assertions/s.
9 runs, 2 assertions, 0 failures, 0 errors, 7 skips
11 runs, 2 assertions, 2 failures, 0 errors, 9 skips
You have skipped tests. Run with --verbose for details.
```

初期状態ではレベル2とレベル3用のテストが`skip`されているため、実行結果には`S`が7つ出力される
レベル1の状態でコードを提出する場合はテストは`skip`したままでOK。
初期状態ではレベル2とレベル3用のテストが`skip`されているため、実行結果には`S`が9つ出力される
レベル1の状態でコードを提出する場合は、それらのテストは`skip`したままでOK(レベル1用の2つのテストをパスさせるのが提出の条件)

レベル3まで進む場合、全テストを`skip`せずにパスさせる必要があるため、実行結果に`S`は出力されなくなる。

Expand All @@ -243,11 +250,11 @@ Run options: --seed 16463
# Running:
.........
...........
Finished in 0.001414s, 6364.9222 runs/s, 6364.9222 assertions/s.
Finished in 0.131037s, 83.9458 runs/s, 5639.6285 assertions/s.
9 runs, 9 assertions, 0 failures, 0 errors, 0 skips
11 runs, 739 assertions, 0 failures, 0 errors, 0 skips
```

なお、レベル1〜3のいずれも対応するテストパターンはテストコード内のパターンだけでOKとする。
Expand Down
Loading

0 comments on commit b7aadc8

Please sign in to comment.