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

Fix Minitest constant name in tests #791

Merged
merged 1 commit into from
Aug 1, 2023
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
2 changes: 1 addition & 1 deletion test/sprockets_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def test(name, &block)
end
end

class Sprockets::TestCase < MiniTest::Test
class Sprockets::TestCase < Minitest::Test
extend Sprockets::TestDefinition

FIXTURE_ROOT = File.join(__dir__, "fixtures")
Expand Down
2 changes: 1 addition & 1 deletion test/test_babel_processor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
require 'sprockets/cache'
require 'sprockets/babel_processor'

class TestBabelProcessor < MiniTest::Test
class TestBabelProcessor < Minitest::Test
def setup
@env = Sprockets::Environment.new
@env.append_path File.expand_path("../fixtures", __FILE__)
Expand Down
10 changes: 5 additions & 5 deletions test/test_cache_store.rb
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def test_clear
end
end

class TestNullStore < MiniTest::Test
class TestNullStore < Minitest::Test
def setup
@_store = Sprockets::Cache::NullStore.new
@store = Sprockets::Cache.new(Sprockets::Cache::NullStore.new)
Expand All @@ -99,7 +99,7 @@ def test_inspect
include CacheStoreNullTests
end

class TestMemoryStore < MiniTest::Test
class TestMemoryStore < Minitest::Test
def setup
@_store = Sprockets::Cache::MemoryStore.new
@store = Sprockets::Cache.new(@_store)
Expand Down Expand Up @@ -132,7 +132,7 @@ def test_set_with_lru
end
end

class TestZeroMemoryStore < MiniTest::Test
class TestZeroMemoryStore < Minitest::Test
def setup
@_store = Sprockets::Cache::MemoryStore.new(0)
@store = Sprockets::Cache.new(@_store)
Expand All @@ -145,7 +145,7 @@ def test_inspect
include CacheStoreNullTests
end

class TestFileStore < MiniTest::Test
class TestFileStore < Minitest::Test
def setup
@root = Dir::mktmpdir "sprockets-file-store"
@_store = Sprockets::Cache::FileStore.new(@root)
Expand Down Expand Up @@ -180,7 +180,7 @@ def test_clear_store_dir_not_exist
include CacheStoreTests
end

class TestZeroFileStore < MiniTest::Test
class TestZeroFileStore < Minitest::Test
def setup
@tmpdir = Dir::mktmpdir "sprockets-file-store-zero"
@_store = Sprockets::Cache::FileStore.new(@tmpdir, 0)
Expand Down
2 changes: 1 addition & 1 deletion test/test_closure_compressor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'sprockets/cache'
require 'sprockets/closure_compressor'

class TestClosureCompressor < MiniTest::Test
class TestClosureCompressor < Minitest::Test
def test_compress_javascript
input = {
data: "function foo() {\n return true;\n}",
Expand Down
2 changes: 1 addition & 1 deletion test/test_coffee_script_processor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'sprockets/coffee_script_processor'
require 'sprockets/source_map_utils'

class TestCoffeeScriptProcessor < MiniTest::Test
class TestCoffeeScriptProcessor < Minitest::Test
def setup
@env = Sprockets::Environment.new
@env.append_path File.expand_path("../fixtures", __FILE__)
Expand Down
2 changes: 1 addition & 1 deletion test/test_digest_utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'minitest/autorun'
require 'sprockets/digest_utils'

class TestDigestUtils < MiniTest::Test
class TestDigestUtils < Minitest::Test
include Sprockets::DigestUtils

def test_detect_digest_class
Expand Down
2 changes: 1 addition & 1 deletion test/test_eco_processor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'sprockets/cache'
require 'sprockets/eco_processor'

class TestEcoProcessor < MiniTest::Test
class TestEcoProcessor < Minitest::Test
def test_compile_eco_template_to_js
input = {
content_type: 'application/javascript',
Expand Down
2 changes: 1 addition & 1 deletion test/test_ejs_processor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'sprockets/cache'
require 'sprockets/ejs_processor'

class TestEjsProcessor < MiniTest::Test
class TestEjsProcessor < Minitest::Test
def test_compile_ejs_template_to_js
input = {
content_type: 'application/javascript',
Expand Down
2 changes: 1 addition & 1 deletion test/test_encoding_utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'minitest/autorun'
require 'sprockets/encoding_utils'

class TestDigestUtils < MiniTest::Test
class TestDigestUtils < Minitest::Test
include Sprockets::EncodingUtils

def test_deflate
Expand Down
2 changes: 1 addition & 1 deletion test/test_erb_processor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'sprockets/erb_processor'
require 'sass'

class TestERBProcessor < MiniTest::Test
class TestERBProcessor < Minitest::Test

def uri_path(path)
path = '/' + path if path[1] == ':' # Windows path / drive letter
Expand Down
2 changes: 1 addition & 1 deletion test/test_http_utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'minitest/autorun'
require 'sprockets/http_utils'

class TestHTTPUtils < MiniTest::Test
class TestHTTPUtils < Minitest::Test
include Sprockets::HTTPUtils

def test_match_mime_type
Expand Down
2 changes: 1 addition & 1 deletion test/test_jsminc_compressor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
unless RUBY_PLATFORM.include?('java')
require 'sprockets/jsminc_compressor'

class TestJSMincCompressor < MiniTest::Test
class TestJSMincCompressor < Minitest::Test

def test_compress_javascript
input = {
Expand Down
2 changes: 1 addition & 1 deletion test/test_jst_processor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'sprockets/cache'
require 'sprockets/jst_processor'

class TestJstProcessor < MiniTest::Test
class TestJstProcessor < Minitest::Test
def test_export_js_template_in_JST
input = {
name: 'users/show',
Expand Down
2 changes: 1 addition & 1 deletion test/test_manifest_utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'sprockets/manifest_utils'
require 'logger'

class TestManifestUtils < MiniTest::Test
class TestManifestUtils < Minitest::Test
include Sprockets::ManifestUtils

def test_generate_manifest_path
Expand Down
2 changes: 1 addition & 1 deletion test/test_path_dependency_utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'minitest/autorun'
require 'sprockets/path_dependency_utils'

class TestPathDependencyUtils < MiniTest::Test
class TestPathDependencyUtils < Minitest::Test
include Sprockets::PathDependencyUtils

def test_entries_with_dependencies
Expand Down
2 changes: 1 addition & 1 deletion test/test_path_digest_utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'minitest/autorun'
require 'sprockets/path_digest_utils'

class TestPathDigestUtils < MiniTest::Test
class TestPathDigestUtils < Minitest::Test
include Sprockets::PathDigestUtils

def test_file_stat_digest
Expand Down
2 changes: 1 addition & 1 deletion test/test_path_utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'minitest/autorun'
require 'sprockets/path_utils'

class TestPathUtils < MiniTest::Test
class TestPathUtils < Minitest::Test
include Sprockets::PathUtils

DOSISH = File::ALT_SEPARATOR != nil
Expand Down
2 changes: 1 addition & 1 deletion test/test_processor_utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def test_charset_supersedes_default
end
end

class TestProcessorUtils < MiniTest::Test
class TestProcessorUtils < Minitest::Test
include Sprockets::ProcessorUtils

class Processor
Expand Down
2 changes: 1 addition & 1 deletion test/test_require.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require 'minitest/autorun'

class TestRequire < MiniTest::Test
class TestRequire < Minitest::Test
parallelize_me!

ROOT = File.expand_path("../..", __FILE__)
Expand Down
2 changes: 1 addition & 1 deletion test/test_source_map_utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'minitest/autorun'
require 'sprockets/source_map_utils'

class TestSourceMapUtils < MiniTest::Test
class TestSourceMapUtils < Minitest::Test

def deep_dup(object)
Marshal.load( Marshal.dump(object) )
Expand Down
2 changes: 1 addition & 1 deletion test/test_uglifier_compressor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
require 'sprockets/cache'
require 'sprockets/uglifier_compressor'

class TestUglifierCompressor < MiniTest::Test
class TestUglifierCompressor < Minitest::Test
def setup
@env = Sprockets::Environment.new
@env.append_path File.expand_path("../fixtures", __FILE__)
Expand Down
2 changes: 1 addition & 1 deletion test/test_uri_utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'minitest/autorun'
require 'sprockets/uri_utils'

class TestURIUtils < MiniTest::Test
class TestURIUtils < Minitest::Test
include Sprockets::URIUtils

DOSISH = File::ALT_SEPARATOR != nil
Expand Down
2 changes: 1 addition & 1 deletion test/test_utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'minitest/autorun'
require 'sprockets/utils'

class TestUtils < MiniTest::Test
class TestUtils < Minitest::Test
include Sprockets::Utils

def test_duplicable
Expand Down
2 changes: 1 addition & 1 deletion test/test_yui_compressor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'sprockets/cache'
require 'sprockets/yui_compressor'

class TestYUICompressor < MiniTest::Test
class TestYUICompressor < Minitest::Test
def test_compress_javascript
input = {
content_type: 'application/javascript',
Expand Down
Loading