rspec-requestable-examples 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/rspec/requestable-examples.rb +0 -2
- metadata +1 -1
@@ -3,7 +3,6 @@ module RSpec
|
|
3
3
|
class RequestedExamples < Array
|
4
4
|
def initialize(options)
|
5
5
|
options ||= {}
|
6
|
-
puts self.object_id
|
7
6
|
replace options[:examples] || []
|
8
7
|
end
|
9
8
|
|
@@ -14,7 +13,6 @@ module RSpec
|
|
14
13
|
end
|
15
14
|
|
16
15
|
def request_examples(options)
|
17
|
-
puts options.inspect
|
18
16
|
@requested_examples = RequestedExamples.new(options)
|
19
17
|
end
|
20
18
|
|