
Security News
Nx npm Packages Compromised in Supply Chain Attack Weaponizing AI CLI Tools
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
minitest-mock_expectations
Advanced tools
Provides method call assertions for minitest.
Add this line to your application's Gemfile:
gem "minitest-mock_expectations"
And then execute:
$ bundle
Or install it yourself as:
$ gem install minitest-mock_expectations
require "minitest/mock_expectations"
Imagine we have model Post
:
class Post
attr_accessor :title, :body
attr_reader :comments
def initialize(title: "", body: "", comments: [])
@title = title
@body = body
@comments = comments
end
def add_comment(comment)
@comments << comment
"Thank you!"
end
end
And variable @post
that reffers to instance of Post
:
def setup
@post = Post.new(
title: "What is new in Rails 6.0",
body: "https://bogdanvlviv.com/posts/ruby/rails/what-is-new-in-rails-6_0.html",
comments: [
"Looking really good.",
"I really like this post."
]
)
end
Asserts that the method will be called on the object
in the block
assert_called(@post, :title) do
@post.title
end
In order to assert that the method will be called multiple times on the object
in the block set :times
option:
assert_called(@post, :title, times: 2) do
@post.title
@post.title
end
You can stub the return value of the method in the block via :returns
option:
assert_called(@post, :title, returns: "What is new in Rails 5.2") do
assert_equal "What is new in Rails 5.2", @object.title
end
assert_equal "What is new in Rails 6.0", @object.title
Asserts that the method will not be called on the object
in the block
refute_called(@post, :title) do
@post.body
end
Alias for refute_called
.
Asserts that the method will be called with the arguments
on the object
in the block
assert_called_with(@post, :add_comment, ["Thanks for sharing this."]) do
@post.add_comment("Thanks for sharing this.")
end
You can stub the return value of the method in the block via :returns
option:
assert_called_with(@post, :add_comment, ["Thanks for sharing this."], returns: "Thanks!") do
assert_equal "Thanks!", @post.add_comment("Thanks for sharing this.")
end
assert_equal "Thank you!", @post.add_comment("Thanks for sharing this.")
You can also assert that the method will be called with different arguments
on the object
in the block:
assert_called_with(@post, :add_comment, [["Thanks for sharing this."], ["Thanks!"]]) do
@post.add_comment("Thanks for sharing this.")
@post.add_comment("Thanks!")
end
assert_called_with(@post, :add_comment, [[["Thanks for sharing this."]]]) do
@post.add_comment(["Thanks for sharing this."])
end
assert_called_with(@post, :add_comment, [[["Thanks for sharing this.", "Thanks!"]]]) do
@post.add_comment(["Thanks for sharing this.", "Thanks!"])
end
assert_called_with(@post, :add_comment, [[["Thanks for sharing this."], ["Thanks!"]]]) do
@post.add_comment(["Thanks for sharing this."], ["Thanks!"])
end
assert_called_with(@post, :add_comment, [["Thanks for sharing this."], {body: "Thanks!"}]) do
@post.add_comment(["Thanks for sharing this."], {body: "Thanks!"})
end
assert_called_with(@post, :add_comment, [[["Thanks for sharing this."]], [{body: "Thanks!"}]]) do
@post.add_comment(["Thanks for sharing this."])
@post.add_comment({body: "Thanks!"})
end
assert_called_with(@post, :add_comment, [[["Thanks for sharing this."]], [["Thanks!"]]]) do
@post.add_comment(["Thanks for sharing this."])
@post.add_comment(["Thanks!"])
end
Asserts that the method will be called on an instance of the klass
in the block
assert_called_on_instance_of(Post, :title) do
@post.title
end
In order to assert that the method will be called multiple times on an instance of the klass
in the block set :times
option:
assert_called_on_instance_of(Post, :title, times: 2) do
@post.title
@post.title
end
You can stub the return value of the method in the block via :returns
option:
assert_called_on_instance_of(Post, :title, returns: "What is new in Rails 5.2") do
assert_equal "What is new in Rails 5.2", @post.title
end
assert_equal "What is new in Rails 6.0", @post.title
Use nesting of the blocks in order assert that the several methods will be called on an instance of the klass
in the block:
assert_called_on_instance_of(Post, :title, times: 3) do
assert_called_on_instance_of(Post, :body, times: 2) do
@post.title
@post.body
@post.title
@post.body
@post.title
end
end
Asserts that the method will not be called on an instance of the klass
in the block
refute_called_on_instance_of(Post, :title) do
@post.body
end
Use nesting of the blocks in order assert that the several methods will not be called on an instance of the klass
in the block:
refute_called_on_instance_of(Post, :title) do
refute_called_on_instance_of(Post, :body) do
@post.add_comment("Thanks for sharing this.")
end
end
Alias for refute_called_on_instance_of
.
Bug reports and pull requests are welcome on GitHub at https://github.com/bogdanvlviv/minitest-mock_expectations. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that minitest-mock_expectations demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.