2016-03-07 19:52:19 -05:00
|
|
|
# frozen_string_literal: true
|
2015-12-15 09:03:59 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
require 'capybara/rspec'
|
|
|
|
|
|
|
|
RSpec.configuration.before(:each, { file_path: "./spec/rspec/scenarios_spec.rb" } ) do
|
|
|
|
@in_filtered_hook = true
|
|
|
|
end
|
|
|
|
|
2016-08-17 14:41:40 -04:00
|
|
|
feature "if fscenario aliases focused tag then" do
|
|
|
|
fscenario "scenario should have focused meta tag" do |example|
|
|
|
|
expect(example.metadata[:focus]).to eq true
|
2015-12-15 09:03:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
feature "if xscenario aliases to pending then" do
|
|
|
|
xscenario "this test should be 'temporarily disabled with xscenario'" do
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|