the industrial

ブログと言うより自分のためのメモ以外の何モノでもないです。でも読んでくださってありがとうございます。

2018-10-24から1日間の記事一覧

Rubyで0始まりの数字は、デフォルトで8進数(基数8)になるよというお話

RSpecでテストケースを書いていたときの話。 expect(hoge_date).to eq Date.new(2018,01,01) ・・・ expect(hoge_date).to eq Date.new(2018,09,01) としたとき、 Date.new(2018,09,01) SyntaxError: (eval):2: Invalid octal digit Date.new(2018,09,01) の…

RSpecで特定のテストケースだけを実行する方法

指定したパスのexampleを実行する。 rspec spec/ rspec spec/controller ファイルを指定すれば、そのファイル内のexampleを実行してくれる。 rspec spec/services/hoge_spec.rb さらに特定のexampleのみ実行したい場合、configに書きを追記。 RSpec.configur…