Sha256: d538c36ad8c72d4315579d02cf6324a662983e3b5f3e0c7e4ab3641a96b0cdb0

Contents?: true

Size: 788 Bytes

Versions: 4

Compression:

Stored size: 788 Bytes

Contents

Feature: http features
  In order to use the utility client calls
  As a developer
  I want to make some requests and inspect some responses

  @connection_needed
  Scenario: Make a restful post to yahoo
    When I post some data to yahoo
	  Then I should get a response

  @connection_needed
  Scenario: Make a restful get
    When I make a restful get request
	  Then I should get a response
	  And I should see some text

  @connection_needed
  Scenario: Get some trends
    When I request some trends
	  Then I should get a response
      
  @connection_needed
  Scenario: Get some RSS
    When I request some RSS
	  Then I should get a response
    And I should receive some headlines

  Scenario: Work with RSS
    Given I have some RSS
	  Then I should receive some headlines
	  
	

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jakal-0.1.0 features/http.feature
jakal-0.0.9 features/http.feature
jakal-0.0.8 features/http.feature
jakal-0.0.7 features/http.feature