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 a8b0cef
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions library/coverage/supported_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
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
Coverage.supported?(:all).should == false
end

it "raise TypeError if argument is not Symbol" do
-> {
Coverage.supported?("lines")
}.should raise_error(TypeError, "wrong argument type String (expected Symbol)")

-> {
Coverage.supported?([])
}.should raise_error(TypeError, "wrong argument type Array (expected Symbol)")

-> {
Coverage.supported?(1)
}.should raise_error(TypeError, "wrong argument type Integer (expected Symbol)")
end
end
end

0 comments on commit a8b0cef

Please sign in to comment.