require File.join(File.dirname(__FILE__), "story_helper")

Story "User has story with parentheses", %{
  As a user
  I want parenthesis
  So that ... well I just do  
}, :type => RailsStory do

  Scenario "the Given has parentheses" do
    Given "parenthesis () in the given " do
    end

    When "anything" do
    end
    
    Then "The error occurred while evaluating nil.perform " do
    end
 
  end
 
  # Scenario "the when has parentheses" do
  #   Given "no parenthesis in the given " do
  #   end
  #   
  #   When "parenthesis () in the when" do
  #   end
  #   
  #   Then "The error occurred while evaluating nil.perform" do
  #   end
  # end
  # 
  # Scenario "the then has parentheses" do
  #   Given "no parenthesis here" do
  #   end
  #   
  #   When "no parenthesis here" do
  #   end
  #   
  #   Then "()" do
  #   end
  # end

 end