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
Expand Up @@ -194,7 +194,7 @@ Output is tab-delimited to make it easy to paste into a spreadsheet.


describe MemeAsker do describe MemeAsker do
before do before do
@meme = MiniTest::Mock.new @meme = Minitest::Mock.new
@meme_asker = MemeAsker.new @meme @meme_asker = MemeAsker.new @meme
end end


Expand Down Expand Up @@ -328,18 +328,18 @@ Expectations are put on Object (one level down) so the Worker
fails. fails.


You can bypass `SimpleDelegate#method_missing` by extending the worker 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: the instance level, like:


before do before do
@worker = Worker.new(Object.new) @worker = Worker.new(Object.new)
@worker.extend MiniTest::Expectations @worker.extend Minitest::Expectations
end end


or you can extend the Worker class (within the test file!), like: or you can extend the Worker class (within the test file!), like:


class Worker class Worker
include ::MiniTest::Expectations include ::Minitest::Expectations
end end


=== How to share code across test classes? === How to share code across test classes?
Expand Down
6 changes: 3 additions & 3 deletions Rakefile
Expand Up @@ -38,8 +38,8 @@ task :specs do
/must_raises/ => 'must_raise', /must_raises/ => 'must_raise',
} }


expectations = MiniTest::Expectations.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 = Minitest::Assertions.public_instance_methods.map(&:to_s)


assertions.sort.each do |assertion| assertions.sort.each do |assertion|
expectation = case assertion expectation = case assertion
Expand All @@ -63,7 +63,7 @@ task :specs do
puts puts
puts "##" puts "##"
puts "# :method: #{expectation}" puts "# :method: #{expectation}"
puts "# See MiniTest::Assertions##{assertion}" puts "# See Minitest::Assertions##{assertion}"
puts puts
puts "infect_an_assertion #{args.join ", "}" puts "infect_an_assertion #{args.join ", "}"
end end
Expand Down
2 changes: 1 addition & 1 deletion design_rationale.rb
Expand Up @@ -26,7 +26,7 @@
############################################################################### ###############################################################################
# The specs generate: # The specs generate:


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

0 comments on commit 8546e45

Please sign in to comment.