Skip to content

Commit

Permalink
- DOH! Fixed the rest of the new casing on Minitest. (spattael)
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//src/minitest/dev/": change = 8691]
  • Loading branch information
zenspider committed Jun 17, 2013
1 parent 53d233c commit 8546e45
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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?
Expand Down
6 changes: 3 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion design_rationale.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
###############################################################################
# The specs generate:

class ThingySpec < MiniTest::Spec
class ThingySpec < Minitest::Spec
def setup
super
do_some_setup
Expand Down

0 comments on commit 8546e45

Please sign in to comment.