aboutsummaryrefslogtreecommitdiffstats
path: root/spec/support/subject.rb
blob: d0c070314cc2b48ddf9d6af8ffd0cdbbb6d26564 (plain)
1
2
3
4
5
6
7
8
9
10
11
module Support
  module Subject
    def expect_it
      expect(subject)
    end
  end
end

RSpec.configure do |conf|
  conf.include Support::Subject
end