File: built_in.rb

package info (click to toggle)
ruby-rspec-expectations 2.14.2-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 920 kB
  • sloc: ruby: 8,202; makefile: 4
file content (39 lines) | stat: -rw-r--r-- 2,127 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module RSpec
  module Matchers
    module BuiltIn
      require 'rspec/matchers/built_in/base_matcher'
      autoload :BeAnInstanceOf, 'rspec/matchers/built_in/be_instance_of'
      autoload :Be,             'rspec/matchers/built_in/be'
      autoload :BeTrue,         'rspec/matchers/built_in/be'
      autoload :BeFalse,        'rspec/matchers/built_in/be'
      autoload :BeNil,          'rspec/matchers/built_in/be'
      autoload :BeComparedTo,   'rspec/matchers/built_in/be'
      autoload :BePredicate,    'rspec/matchers/built_in/be'
      autoload :BeAKindOf,      'rspec/matchers/built_in/be_kind_of'
      autoload :BeWithin,       'rspec/matchers/built_in/be_within'
      autoload :Change,         'rspec/matchers/built_in/change'
      autoload :Cover,          'rspec/matchers/built_in/cover' if (1..2).respond_to?(:cover?)
      autoload :Eq,             'rspec/matchers/built_in/eq'
      autoload :Eql,            'rspec/matchers/built_in/eql'
      autoload :Equal,          'rspec/matchers/built_in/equal'
      autoload :Exist,          'rspec/matchers/built_in/exist'
      autoload :Has,            'rspec/matchers/built_in/has'
      autoload :Have,           'rspec/matchers/built_in/have'
      autoload :Include,        'rspec/matchers/built_in/include'
      autoload :Match,          'rspec/matchers/built_in/match'
      autoload :MatchArray,     'rspec/matchers/built_in/match_array'
      autoload :RaiseError,     'rspec/matchers/built_in/raise_error'
      autoload :RespondTo,      'rspec/matchers/built_in/respond_to'
      autoload :StartWith,      'rspec/matchers/built_in/start_and_end_with'
      autoload :EndWith,        'rspec/matchers/built_in/start_and_end_with'
      autoload :Satisfy,        'rspec/matchers/built_in/satisfy'
      autoload :ThrowSymbol,    'rspec/matchers/built_in/throw_symbol'
      autoload :YieldControl,   'rspec/matchers/built_in/yield'
      autoload :YieldWithArgs,  'rspec/matchers/built_in/yield'
      autoload :YieldWithNoArgs, 'rspec/matchers/built_in/yield'
      autoload :YieldSuccessiveArgs, 'rspec/matchers/built_in/yield'
    end
  end
end