Skip to content

Commit

Permalink
Add specs for Coverage.supported?
Browse files Browse the repository at this point in the history
  • Loading branch information
AI-Mozi committed May 23, 2023
1 parent 807d754 commit 58b7876
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions library/coverage/supported_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
require_relative '../../spec_helper'
require 'coverage'

describe "Coverage.supported?" do
ruby_version_is "3.2" do
it "returns true if coverage measurement is supported for the given mode" do
Coverage.supported?(:lines).should == true
Coverage.supported?(:branches).should == true
Coverage.supported?(:methods).should == true
Coverage.supported?(:eval).should == true
end

it "return false if coverage measurement is not supported for the given mode" do
Coverage.supported?(:all).should == false
Coverage.supported?(:foo).should == false
Coverage.supported?(:bar).should == false
end
end
end

0 comments on commit 58b7876

Please sign in to comment.