Sha256: ab3b47863148311e6dd491c0c42179dd1c9025f3ee8b57e7a51742ad9559e936

Contents?: true

Size: 618 Bytes

Versions: 5

Compression:

Stored size: 618 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable RSpec/MultipleDescribes

require 'spec_helper'
require 'capybara/rspec'

RSpec.configuration.before(:each, file_path: './spec/rspec/scenarios_spec.rb') do
  @in_filtered_hook = true
end

feature 'if fscenario aliases focused tag then' do
  fscenario 'scenario should have focused meta tag' do |example| # rubocop:disable RSpec/Focus
    expect(example.metadata[:focus]).to be true
  end
end

feature 'if xscenario aliases to pending then' do
  xscenario "this test should be 'temporarily disabled with xscenario'" do
  end
end

# rubocop:enable RSpec/MultipleDescribes

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
capybara-3.38.0 spec/rspec/scenarios_spec.rb
tdiary-5.2.3 vendor/bundle/ruby/3.1.0/gems/capybara-3.37.1/spec/rspec/scenarios_spec.rb
tdiary-5.2.2 vendor/bundle/ruby/3.1.0/gems/capybara-3.37.1/spec/rspec/scenarios_spec.rb
capybara-3.37.1 spec/rspec/scenarios_spec.rb
capybara-3.37.0 spec/rspec/scenarios_spec.rb