Skip to content

Rubyとbundlerのバージョンを更新 #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
language: ruby
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
- 2.6.6
- 2.7.1
- ruby-head
script:
- bundle exec rspec
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ DEPENDENCIES
rspec-power_assert

BUNDLED WITH
1.17.2
2.1.4
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ TDDBC for Ruby with RSpec
[![Build Status](https://travis-ci.org/tddbc/ruby_rspec.svg?branch=master)](https://travis-ci.org/tddbc/ruby_rspec)

## 動作確認環境
* ruby 2.1以降
* ruby 2.7以降

## セットアップ
```bash
Expand All @@ -25,9 +25,17 @@ Sample
should say 'Hello TDD BootCamp!'
Using subject it should
should eq "Yeah! TDD BootCamp!"

Finished in 0.00218 seconds (files took 0.1389 seconds to load)
2 examples, 0 failures
Using power assert
should
be asserted by{ sample.say(greeting) == "Wow! TDD BootCamp!" }
| | | |
| | | true
| | "Wow!"
| "Wow! TDD BootCamp!"
#<Sample:0x0000563cf08833e8>

Finished in 0.10792 seconds (files took 0.80775 seconds to load)
3 examples, 0 failures
```

のようにテストが正常終了すればOKです。
Expand Down