File: rspec_ext.rb

package info (click to toggle)
ruby-rspec-retry 0.2.0-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 140 kB
  • sloc: ruby: 126; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 250 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module RSpec
  module Core
    class Example
      def clear_exception
        @exception = nil
      end
    end
  end
end

module RSpec
  module Core
    class ExampleGroup
      def clear_lets
        @__memoized = {}
      end
    end
  end
end