Skip to content

Commit

Permalink
Update test-gem-file-contents
Browse files Browse the repository at this point in the history
  • Loading branch information
fractaledmind committed Jan 22, 2024
1 parent 6456dec commit 832fe6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/test-gem-file-contents
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ describe File.basename(gemfile) do

it "contains extension C and header files" do
assert_equal(6, gemfile_contents.count { |f| File.fnmatch?("ext/**/*.c", f) })
assert_equal(6, gemfile_contents.count { |f| File.fnmatch?("ext/**/*.h", f) })
assert_equal(7, gemfile_contents.count { |f| File.fnmatch?("ext/**/*.h", f) })
end

it "includes C files in extra_rdoc_files" do
Expand Down Expand Up @@ -154,7 +154,7 @@ describe File.basename(gemfile) do

it "contains extension C and header files" do
assert_equal(6, gemfile_contents.count { |f| File.fnmatch?("ext/**/*.c", f) })
assert_equal(6, gemfile_contents.count { |f| File.fnmatch?("ext/**/*.h", f) })
assert_equal(7, gemfile_contents.count { |f| File.fnmatch?("ext/**/*.h", f) })
end

it "includes C files in extra_rdoc_files" do
Expand Down

0 comments on commit 832fe6a

Please sign in to comment.