You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # 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
|