Skip to content

Commit

Permalink
Marked features about links, twitter etc as todo.
Browse files Browse the repository at this point in the history
  • Loading branch information
ratnikov committed Jan 3, 2011
1 parent cb938cf commit 3b152cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion config/cucumber.yml
@@ -1,7 +1,7 @@
<% <%
rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : "" rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : ""
rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}" rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}"
std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} --strict --tags ~@wip" std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} --strict --tags ~@wip --tags ~@todo"
%> %>
default: <%= std_opts %> features default: <%= std_opts %> features
wip: --tags @wip:3 --wip features wip: --tags @wip:3 --wip features
Expand Down
3 changes: 3 additions & 0 deletions features/learning.feature
Expand Up @@ -16,17 +16,20 @@ Feature: Users that visit my home page should learn about me
When I visit "/" When I visit "/"
Then I should see "John Doe" Then I should see "John Doe"


@todo
Scenario: Users should learn my contact information Scenario: Users should learn my contact information
When I visit "/" When I visit "/"


Then I should see "john@example.com" Then I should see "john@example.com"
And I should see "(123) 456 7890" And I should see "(123) 456 7890"


@todo
Scenario: Users should learn how I look like Scenario: Users should learn how I look like
When I visit "/" When I visit "/"


Then I should see "john@example.com" gravatar Then I should see "john@example.com" gravatar


@todo
Scenario: Users should learn about my locations on the web Scenario: Users should learn about my locations on the web
When I visit "/" When I visit "/"


Expand Down

0 comments on commit 3b152cd

Please sign in to comment.