2010-10-27 25 views
7

Ce code:Comment réutiliser la définition de pas de concombre avec une table pour le dernier paramètre?

Then %{I should see the following data in the "Feeds" data grid: 
                | Name | 
                | #{name} |} 

Et celui-ci:

Then "I should see the following data in the \"Feeds\" data grid: 
| Name | 
| #{name} |" 

Et ceci:

Then "I should see the following data in the \"Feeds\" data grid:\n| Name |\n| #{name} |" 

Et même ceci:

Then <<EOS 
I should see the following data in the "Feeds" data grid: 
| Name | 
| #{name} | 
EOS 

me donne:

Your block takes 2 arguments, but the Regexp matched 1 argument. 
(Cucumber::ArityMismatchError) 
    tests/endtoend/step_definitions/instruments_editor_steps.rb:29:in `/^the editor shows "([^"]*)" in the feeds list$/' 
    melomel-0.6.0/lib/melomel/cucumber/data_grid_steps.rb:59:in `/^I should see the following data in the "([^"]*)" data grid:$/' 
    tests/endtoend/instruments_editor.feature:11:in `And the editor shows "myFeed" in the feeds list 

Celui-ci:

Then "I should see the following data in the \"Feeds\" data grid: | Name || #{name} |" 

Et celui-ci:

Then "I should see the following data in the \"Feeds\" data grid:| Name || #{name} |" 

donne:

Undefined step: "I should see the following data in the "Feeds" data grid:| Name || myFeed |" (Cucumber::Undefined) 
    ./tests/endtoend/step_definitions/instruments_editor_steps.rb:31:in `/^the editor shows "([^"]*)" in the feeds list$/' 
    tests/endtoend/instruments_editor.feature:11:in `And the editor shows "myFeed" in the feeds list' 

Répondre

6

que j'ai trouvé la réponse moi-même:

steps %Q{ 
Then I should see the following data in the "Feeds" data grid: 
               | Name | 
               | #{name} | 
} 
+0

Je ne pouvais pas obtenir ce travail, mais @kwon réponse fonctionne très bien. .. – nodrog

3

NOTE SUR LA CI-DESSUS: peut sembler évident, mais la nouvelle ligne après la première « { » est soooooo importante

Une autre façon:

Given /^My basic step:$/ do |table| 
    #do table operation 
end 


Given /^My referring step:$/ do |table| 
    table.hashes.each do |row|  
    row_as_table = %{ 
     |prop1|prop2| 
     |#{row[:prop1]}|#{row[:prop2]}| 
    } 
    Given %{My basic step:}, Cucumber::Ast::Table.parse(row_as_table, "", 0) 
    end 
end 
3

Vous pouvez également écrire cette façon, en utilisant #table

Then /^some other step$/ do 
    Then %{I should see the following data in the "Feeds" data grid:}, table(%{ 
    | Name | 
    | #{name} | 
    }) 
end 
0

Envisagez d'utiliser

Given /^events with:-$/ do |table| 
    Given %{I am on the event admin page} 
    table.hashes.each do |row| 
    Given %{an event with:-}, Cucumber::Ast::Table.new([row]).transpose 
    end 
end 

Je trouve cela beaucoup plus élégant que de construire la table à la main.

événements avec: - obtient une table comme celui-ci

| Form | Element | Label | 
| foo | bar  | baz | 

et un événement avec: - obtient une table comme

| Form | foo | 
| Element | bar | 
| Label | baz |