Skip to content

Commit

Permalink
chore: moved all tests to minitest (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
seuros authored Jan 10, 2024
1 parent 4e7907c commit ccb9453
Show file tree
Hide file tree
Showing 26 changed files with 1,101 additions and 1,136 deletions.
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

0 comments on commit ccb9453

Please sign in to comment.