Skip to content

Commit

Permalink
Prefer Minitest to MiniTest
Browse files Browse the repository at this point in the history
  • Loading branch information
teeparham committed Apr 18, 2019
1 parent cbe21a0 commit e49af8f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/cache_rocket_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require "test_helper"

class CacheRocketTest < MiniTest::Spec
class CacheRocketTest < Minitest::Spec
class FakeRenderer
include CacheRocket

Expand Down
2 changes: 1 addition & 1 deletion test/fragment_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require "test_helper"

module CacheRocket
class FragmentTest < MiniTest::Spec
class FragmentTest < Minitest::Spec
describe "#to_s" do
it "equal value" do
assert_equal "yo", Fragment.new("yo").to_s
Expand Down
2 changes: 1 addition & 1 deletion test/key_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require "test_helper"

module CacheRocket
class KeyTest < MiniTest::Spec
class KeyTest < Minitest::Spec
describe "#cache_replace_key" do
it "return key with prefix" do
class KeyFake
Expand Down

0 comments on commit e49af8f

Please sign in to comment.