下面是一个 Rails 模型测试:
it "will respond to name" do
@user.must_respond_to :name
end
在 minitest 中,有没有办法像这样缩短这种语法?
it { must_respond_to :name }
甚至这个?
it { must_respond_to (:name) }
下面是一个 Rails 模型测试:
it "will respond to name" do
@user.must_respond_to :name
end
在 minitest 中,有没有办法像这样缩短这种语法?
it { must_respond_to :name }
甚至这个?
it { must_respond_to (:name) }