Created
June 28, 2014 00:43
-
-
Save IdahoEv/fbeec3261221dd347fd1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| describe '/path/:id/other/:sub_id' do | |
| # 536 cases recorded by Fluoride | |
| # Exit code 200 success | |
| # See example: 'exchange-2-69825934893380-24.yml' | |
| describe "successful request" do | |
| it "Should succeed " do | |
| get 'path/__/other__' | |
| # TODO | |
| end | |
| end | |
| # 22 cases recorded by Fluoride | |
| # Exit code 302 redirect | |
| # See example: 'exchange-2-69825934893380-23.yml' | |
| describe "redirect request" do | |
| it "Should redirect " do | |
| get 'path/__/other__' | |
| # TODO | |
| end | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment