Module: Minitest::Spec::DSL
- Included in:
- BenchSpec, Minitest::Spec
- Defined in:
- lib/minitest/spec.rb
Overview
Oh look! A Minitest::Spec::DSL module! Eat your heart out DHH.
Constant Summary collapse
- TYPES =
Contains pairs of matchers and Spec classes to be used to calculate the superclass of a top-level describe. This allows for automatically customizable spec types.
See: register_spec_type and spec_type
[[//, Minitest::Spec]]
Instance Attribute Summary collapse
-
#desc ⇒ Object
readonly
:stopdoc:.
Instance Method Summary collapse
-
#after(type = nil, &block) ⇒ Object
Define an ‘after’ action.
- #after_last(type = nil, &block) ⇒ Object
-
#before(type = nil, &block) ⇒ Object
Define a ‘before’ action.
- #before_first(type = nil, &block) ⇒ Object
-
#children ⇒ Object
Returns the children of this spec.
-
#create(name, desc) ⇒ Object
:nodoc:.
-
#describe_stack ⇒ Object
:nodoc:.
-
#it(desc = "anonymous", &block) ⇒ Object
(also: #t, #specify)
Define an expectation with name
desc. -
#let(name, &block) ⇒ Object
Essentially, define an accessor for
namewithblock. -
#name ⇒ Object
:nodoc:.
-
#nuke_test_methods! ⇒ Object
:nodoc:.
-
#register_spec_type(*args, &block) ⇒ Object
Register a new type of spec that matches the spec’s description.
-
#spec_type(desc) ⇒ Object
Figure out the spec class to use based on a spec’s description.
-
#subject(&block) ⇒ Object
Another lazy man’s accessor generator.
-
#to_s ⇒ Object
:nodoc:.
Instance Attribute Details
#desc ⇒ Object (readonly)
:stopdoc:
279 280 281 |
# File 'lib/minitest/spec.rb', line 279 def desc @desc end |
Instance Method Details
#after(type = nil, &block) ⇒ Object
Define an ‘after’ action. Inherits the way normal methods should.
NOTE: type is ignored and is only there to make porting easier.
Equivalent to Minitest::Test#teardown.
192 193 194 195 196 197 |
# File 'lib/minitest/spec.rb', line 192 def after type = nil, &block define_method :teardown do self.instance_eval(&block) super() end end |
#after_last(type = nil, &block) ⇒ Object
199 200 201 202 203 204 |
# File 'lib/minitest/spec.rb', line 199 def after_last type = nil, &block define_method :after_last_method do self.instance_eval(&block) super() end end |
#before(type = nil, &block) ⇒ Object
Define a ‘before’ action. Inherits the way normal methods should.
NOTE: type is ignored and is only there to make porting easier.
Equivalent to Minitest::Test#setup.
178 179 180 181 182 183 |
# File 'lib/minitest/spec.rb', line 178 def before type = nil, &block define_method :setup do super() self.instance_eval(&block) end end |
#before_first(type = nil, &block) ⇒ Object
164 165 166 167 168 169 |
# File 'lib/minitest/spec.rb', line 164 def before_first type = nil, &block define_method :before_first_method do super() self.instance_eval(&block) end end |
#children ⇒ Object
Returns the children of this spec.
154 155 156 |
# File 'lib/minitest/spec.rb', line 154 def children @children ||= [] end |
#create(name, desc) ⇒ Object
:nodoc:
257 258 259 260 261 262 263 264 265 266 267 268 |
# File 'lib/minitest/spec.rb', line 257 def create name, desc # :nodoc: cls = Class.new(self) do @name = name @desc = desc nuke_test_methods! end children << cls cls end |
#describe_stack ⇒ Object
:nodoc:
147 148 149 |
# File 'lib/minitest/spec.rb', line 147 def describe_stack # :nodoc: Thread.current[:describe_stack] ||= [] end |
#it(desc = "anonymous", &block) ⇒ Object Also known as: t, specify
Define an expectation with name desc. Name gets morphed to a proper test method name. For some freakish reason, people who write specs don’t like class inheritance, so this goes way out of its way to make sure that expectations aren’t inherited.
This is also aliased to #specify and doesn’t require a desc arg.
Hint: If you do want inheritence, use minitest/test. You can mix and match between assertions and expectations as much as you want.
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
# File 'lib/minitest/spec.rb', line 217 def it desc = "anonymous", &block block ||= proc { skip "(no tests defined)" } @specs ||= 0 @specs += 1 name = "test_%04d_%s" % [ @specs, desc ] define_method name, &block self.children.each do |mod| mod.send :undef_method, name if mod.public_method_defined? name end name end |
#let(name, &block) ⇒ Object
Essentially, define an accessor for name with block.
Why use let instead of def? I honestly don’t know.
241 242 243 244 245 246 247 |
# File 'lib/minitest/spec.rb', line 241 def let name, &block raise ArgumentError, 'name cannot begin with "test"' if name.to_s =~ /\Atest/ define_method name do @_memoized ||= {} @_memoized.fetch(name) { |k| @_memoized[k] = instance_eval(&block) } end end |
#name ⇒ Object
:nodoc:
270 271 272 |
# File 'lib/minitest/spec.rb', line 270 def name # :nodoc: defined?(@name) ? @name : super end |
#nuke_test_methods! ⇒ Object
:nodoc:
158 159 160 161 162 |
# File 'lib/minitest/spec.rb', line 158 def nuke_test_methods! # :nodoc: self.public_instance_methods.grep(/^test_/).each do |name| self.send :undef_method, name end end |
#register_spec_type(*args, &block) ⇒ Object
Register a new type of spec that matches the spec’s description. This method can take either a Regexp and a spec class or a spec class and a block that takes the description and returns true if it matches.
Eg:
register_spec_type(/Controller$/, Minitest::Spec::Rails)
or:
register_spec_type(Minitest::Spec::RailsModel) do |desc|
desc.superclass == ActiveRecord::Base
end
123 124 125 126 127 128 129 130 |
# File 'lib/minitest/spec.rb', line 123 def register_spec_type(*args, &block) if block then matcher, klass = block, args.first else matcher, klass = *args end TYPES.unshift [matcher, klass] end |
#spec_type(desc) ⇒ Object
Figure out the spec class to use based on a spec’s description. Eg:
spec_type("BlahController") # => Minitest::Spec::Rails
137 138 139 140 141 142 143 144 145 |
# File 'lib/minitest/spec.rb', line 137 def spec_type desc TYPES.find { |matcher, klass| if matcher.respond_to? :call then matcher.call desc else matcher === desc.to_s end }.last end |
#subject(&block) ⇒ Object
Another lazy man’s accessor generator. Made even more lazy by setting the name for you to subject.
253 254 255 |
# File 'lib/minitest/spec.rb', line 253 def subject &block let :subject, &block end |
#to_s ⇒ Object
:nodoc:
274 275 276 |
# File 'lib/minitest/spec.rb', line 274 def to_s # :nodoc: name # Can't alias due to 1.8.7, not sure why end |