From 8546e453aa28f427c29e2f750118ad1abe4e331d Mon Sep 17 00:00:00 2001 From: Ryan Davis Date: Mon, 17 Jun 2013 01:23:41 -0800 Subject: [PATCH] - DOH! Fixed the rest of the new casing on Minitest. (spattael) [git-p4: depot-paths = "//src/minitest/dev/": change = 8691] --- README.txt | 8 ++++---- Rakefile | 6 +++--- design_rationale.rb | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.txt b/README.txt index 60596d3..087c7b2 100644 --- a/README.txt +++ b/README.txt @@ -194,7 +194,7 @@ Output is tab-delimited to make it easy to paste into a spreadsheet. describe MemeAsker do before do - @meme = MiniTest::Mock.new + @meme = Minitest::Mock.new @meme_asker = MemeAsker.new @meme end @@ -328,18 +328,18 @@ Expectations are put on Object (one level down) so the Worker fails. You can bypass `SimpleDelegate#method_missing` by extending the worker -with `MiniTest::Expectations`. You can either do that in your setup at +with `Minitest::Expectations`. You can either do that in your setup at the instance level, like: before do @worker = Worker.new(Object.new) - @worker.extend MiniTest::Expectations + @worker.extend Minitest::Expectations end or you can extend the Worker class (within the test file!), like: class Worker - include ::MiniTest::Expectations + include ::Minitest::Expectations end === How to share code across test classes? diff --git a/Rakefile b/Rakefile index 25d9b90..d060c76 100644 --- a/Rakefile +++ b/Rakefile @@ -38,8 +38,8 @@ task :specs do /must_raises/ => 'must_raise', } - expectations = MiniTest::Expectations.public_instance_methods.map(&:to_s) - assertions = MiniTest::Assertions.public_instance_methods.map(&:to_s) + expectations = Minitest::Expectations.public_instance_methods.map(&:to_s) + assertions = Minitest::Assertions.public_instance_methods.map(&:to_s) assertions.sort.each do |assertion| expectation = case assertion @@ -63,7 +63,7 @@ task :specs do puts puts "##" puts "# :method: #{expectation}" - puts "# See MiniTest::Assertions##{assertion}" + puts "# See Minitest::Assertions##{assertion}" puts puts "infect_an_assertion #{args.join ", "}" end diff --git a/design_rationale.rb b/design_rationale.rb index 8f250ae..a3fcc37 100644 --- a/design_rationale.rb +++ b/design_rationale.rb @@ -26,7 +26,7 @@ end # assert_equal 2, 2 ############################################################################### # The specs generate: -class ThingySpec < MiniTest::Spec +class ThingySpec < Minitest::Spec def setup super do_some_setup