Sha256: 2f148e341f6bf9876de97c4d5a8d6e2e8bb15b579de941f77e3e586dbfc176f4
Contents?: true
Size: 396 Bytes
Versions: 29
Compression:
Stored size: 396 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Mutant::Strategy do let(:class_under_test) do Class.new(described_class) end let(:object) { class_under_test.new } describe '#teardown' do subject { object.teardown } it_should_behave_like 'a command method' end describe '#setup' do subject { object.setup } it_should_behave_like 'a command method' end end
Version data entries
29 entries across 29 versions & 1 rubygems