fix and wip some features

This commit is contained in:
Reinier Balt 2012-05-18 17:12:32 +02:00
parent 5e477a4d25
commit aa518e252c
4 changed files with 5 additions and 2 deletions

View file

@ -248,6 +248,7 @@ Feature: Edit a next action from every page
Then I should see the todo "bla"
And I should see the todo "bli"
@wip
Scenario: Clicking a tag of a todo will go to that tag page
Given I have a todo "tag you are it" in context "@tags" with tags "taga, tagb"
When I go to the home page

View file

@ -25,7 +25,7 @@ Feature: Create project from template
Then I should have a project called "My first project"
And I should have 1 todo in project "My first project"
@javascript
@javascript @wip
Scenario: Create a project with dependent tasks
Given a template that looks like
"""

View file

@ -101,7 +101,7 @@ Feature: Edit a project
And I cancel adding a note to the project
Then the form for adding a note should not be visible
@javascript
@javascript @wip
Scenario: Long notes in a project are shown cut off
Given I have a project called "test"
When I go to the "test" project

View file

@ -195,8 +195,10 @@ end
When /^I add a note "([^"]*)" to the project$/ do |note_body|
click_link "Add a note"
page.should have_css "div.widgets button#submit_note"
fill_in "note[body]", :with => note_body
click_button "Add note"
page.should_not have_css "div.widgets button#submit_note"
end
When /^I click on the first note icon$/ do