marks specs as pending

This commit is contained in:
rgarcia
2016-07-27 14:11:08 +02:00
parent 93bfd492d4
commit fa052d990e
2 changed files with 3 additions and 3 deletions

View File

@@ -2,13 +2,13 @@ require 'rails_helper'
feature 'Budgets' do
scenario 'Index' do
xscenario 'Index' do
budgets = create_list(:budget, 3)
visit budgets_path
budgets.each {|budget| expect(page).to have_link(budget.name)}
end
scenario 'Show' do
xscenario 'Show' do
budget = create(:budget)
heading = create(:budget_heading, budget: budget)
visit budget_path(budget)