|
1234567891011121314151617181920212223242526272829303132 |
- # frozen_string_literal: true
-
- require 'cucumber/hooks'
- module Cucumber::Hooks
- shared_examples_for 'a source node' do
- it 'responds to text' do
- expect(subject.text).to be_a(String)
- end
-
- it 'responds to location' do
- expect(subject.location).to eq(location)
- end
-
- it 'responds to match_locations?' do
- expect(subject.match_locations?([location])).to be_truthy
- expect(subject.match_locations?([])).to be_falsey
- end
- end
-
- require 'cucumber/core/test/location'
- describe BeforeHook do
- subject { BeforeHook.new(location) }
- let(:location) { Cucumber::Core::Test::Location.new('hooks.rb', 1) }
- it_behaves_like 'a source node'
- end
-
- describe AfterHook do
- subject { AfterHook.new(location) }
- let(:location) { Cucumber::Core::Test::Location.new('hooks.rb', 1) }
- it_behaves_like 'a source node'
- end
- end
|