Last active
August 11, 2019 03:12
-
-
Save jodosha/1560208 to your computer and use it in GitHub Desktop.
MiniTest shared examples
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'test_helper' | |
shared_examples_for 'An Adapter' do | |
describe '#read' do | |
before do | |
@adapter.write(@key = 'whiskey', @value = "Jameson's") | |
end | |
it 'reads a given key' do | |
@adapter.read(@key).must_equal(@value) | |
end | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'test_helper' | |
describe Memory do | |
before do | |
@adapter = Memory.new('memory://127.0.0.1') | |
end | |
after do | |
@adapter.clear | |
end | |
it_behaves_like 'An Adapter' | |
describe '#to_s' do | |
it 'returns the name' do | |
@adapter.to_s.must_equal('Memory') | |
end | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'test_helper' | |
describe Redis do | |
before do | |
@adapter = Redis.new('redis://127.0.0.1:6379') | |
end | |
after do | |
@adapter.clear | |
end | |
it_behaves_like 'An Adapter' | |
describe '#to_s' do | |
it 'returns the name' do | |
@adapter.to_s.must_equal('Redis') | |
end | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem 'minitest' | |
require 'minitest/spec' | |
require 'minitest/autorun' | |
MiniTest::Spec.class_eval do | |
def self.shared_examples | |
@shared_examples ||= {} | |
end | |
end | |
module MiniTest::Spec::SharedExamples | |
def shared_examples_for(desc, &block) | |
MiniTest::Spec.shared_examples[desc] = block | |
end | |
def it_behaves_like(desc) | |
self.instance_eval(&MiniTest::Spec.shared_examples[desc]) | |
end | |
end | |
Object.class_eval { include(MiniTest::Spec::SharedExamples) } |
I took @lgierth's comments and then took it another step further, adding support for passing a block to it_behaves_like
so let
s could be overridden. https://gist.github.com/rmg/5843562
Love how all of this is set up! Can you clarify where to put adapter_test.rb?
Great code, thanks.
I just added a small change to support passing arguments to it_behaves_like
like this:
def it_behaves_like(desc, *args)
self.instance_exec(*args, &MiniTest::Spec.shared_examples[desc])
end
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
it_behaves_like
should call the block within the context ofself
:Otherwise this won't work for nested
describe
blocks. I also modified this to defineshared_examples_for
andit_behaves_like
onKernel
, as that's where MiniTest itself definesdescribe
.