SimpleCov を使ったコードカバレッジの計測

Gemfile に gem を追加する

gem "simplecov", require: false, group: :test

test_helper.rb に require とメソッド呼び出しを追加する

require "simplecov"
SimpleCov.start "rails"

coverage ディレクトリを .gitignore に追加する

echo "coverage" >> .gitignore

テストを実行する

$ rails test

coverage/index.html に結果が出力されているので確認する

参考:

colszowka/simplecov: Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites – GitHub

記事をシェアする:
タグ:

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

Protected by reCAPTCHA