Skip to content

Commit

Permalink
Update test
Browse files Browse the repository at this point in the history
  • Loading branch information
ntkme committed Jul 27, 2023
1 parent c5f4cb0 commit eb3c09a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/custom_importer_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require_relative 'test_helper'

module SassC
class CustomImporterTest < MiniTest::Test
class CustomImporterTest < Minitest::Test
include TempFileTest

class CustomImporter < Importer
Expand Down
2 changes: 1 addition & 1 deletion test/engine_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require_relative 'test_helper'

module SassC
class EngineTest < MiniTest::Test
class EngineTest < Minitest::Test
include TempFileTest

def render(data)
Expand Down
2 changes: 1 addition & 1 deletion test/error_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require_relative 'test_helper'

module SassC
class ErrorTest < MiniTest::Test
class ErrorTest < Minitest::Test
def render(data, opts = {})
Engine.new(data, opts).render
end
Expand Down
2 changes: 1 addition & 1 deletion test/functions_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
require 'stringio'

module SassC
class FunctionsTest < MiniTest::Test
class FunctionsTest < Minitest::Test
include FixtureHelper

def setup
Expand Down
2 changes: 1 addition & 1 deletion test/output_style_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require_relative 'test_helper'

module SassC
class OutputStyleTest < MiniTest::Test
class OutputStyleTest < Minitest::Test
def input_scss
<<~CSS
$color: #fff;
Expand Down
2 changes: 1 addition & 1 deletion test/vendor_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require_relative 'test_helper'

module SassC
class VendorTest < MiniTest::Test
class VendorTest < Minitest::Test
class PassthroughImporter < Importer
def imports(path, _parent_path)
Import.new(path)
Expand Down

0 comments on commit eb3c09a

Please sign in to comment.