Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: moved all tests to minitest #45

Merged
merged 2 commits into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
# frozen_string_literal: true

require "bundler/gem_tasks"
require "rspec/core/rake_task"

# Add minitest tasks
require "rake/testtask"
Rake::TestTask.new do |t|
t.libs << "test"
t.test_files = FileList["test/**/*_test.rb"]
t.test_files = FileList["test/**/*_test.rb", "test/**/*_spec.rb"]
t.verbose = true
end

RSpec::Core::RakeTask.new(:spec) do |t|
t.rspec_opts = "--format documentation --format RspecJunitFormatter --out test-reports/spec.xml"
end

desc "Running Tests"
task default: %i[spec test]
task default: %i[test]
14 changes: 0 additions & 14 deletions spec/spec_helper.rb

This file was deleted.

37 changes: 0 additions & 37 deletions spec/spec_helper_sequel.rb

This file was deleted.

13 changes: 0 additions & 13 deletions spec/spec_helper_will_paginate.rb

This file was deleted.

260 changes: 0 additions & 260 deletions spec/trailblazer/finder/adapters/basic_spec.rb

This file was deleted.

Loading