Class: RSpec::Core::Metadata
- Inherits:
-
Hash
- Object
- Hash
- RSpec::Core::Metadata
- Defined in:
- lib/rspec/core/metadata.rb
Overview
Each ExampleGroup class and Example instance owns an instance of Metadata, which is Hash extended to support lazy evaluation of values associated with keys that may or may not be used by any example or group.
In addition to metadata that is used internally, this also stores user-supplied metadata, e.g.
describe Something, :type => :ui do
it "does something", :slow => true do
# ...
end
end
:type => :ui
is stored in the Metadata owned by the example group, and
:slow => true
is stored in the Metadata owned by the example. These can
then be used to select which examples are run using the --tag
option on
the command line, or several methods on Configuration
used to filter a
run (e.g. filter_run_including
, filter_run_excluding
, etc).
Defined Under Namespace
Modules: ExampleMetadataHash, GroupMetadataHash
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(parent_group_metadata = nil) {|_self| ... } ⇒ Metadata
constructor
A new instance of Metadata.
Constructor Details
#initialize(parent_group_metadata = nil) {|_self| ... } ⇒ Metadata
Returns a new instance of Metadata.
140 141 142 143 144 145 146 147 148 149 |
# File 'lib/rspec/core/metadata.rb', line 140 def initialize(=nil) if update() store(:example_group, {:example_group => [:example_group].extend(GroupMetadataHash)}.extend(GroupMetadataHash)) else store(:example_group, {}.extend(GroupMetadataHash)) end yield self if block_given? end |
Class Method Details
.relative_path(line) ⇒ Object
29 30 31 32 33 34 |
# File 'lib/rspec/core/metadata.rb', line 29 def self.relative_path(line) line = line.sub(File.("."), ".") line = line.sub(/\A([^:]+:\d+)$/, '\\1') return nil if line == '-e:1' line end |