Skip to content

Commit 8c72cd3

Browse files
committed
fix rake test task
1 parent f48b1b0 commit 8c72cd3

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

Rakefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ require "rubocop/rake_task"
77
RuboCop::RakeTask.new
88

99
require "rspec/core/rake_task"
10-
RSpec::Core::RakeTask.new(:spec) do |c|
11-
# loading rails in this file breaks `rake`
12-
c.exclude_pattern = "spec/sqlite_extensions/rails_spec.rb"
13-
end
10+
RSpec::Core::RakeTask.new(:spec)
1411

1512
Rake::ExtensionTask.new("sqlite_extensions/uuid") do |ext|
1613
ext.gem_spec = Gem::Specification.load("sqlite_extensions-uuid.gemspec")

spec/sqlite_extensions/rails_spec.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# not required by our gem, but needed for these tests
44
require "sqlite3"
55
require "active_record/railtie"
6-
require "minitest/autorun"
76

87
# Adapted from https://github.com/rails/rails/blob/v8.0.2/guides/bug_report_templates/active_record_migrations.rb
98
#

0 commit comments

Comments
 (0)