Skip to content

Commit

Permalink
Merge pull request #153 from abeger/66_allergies_json
Browse files Browse the repository at this point in the history
Allergies: adding JSON test file
  • Loading branch information
kytrinyx committed Dec 4, 2015
2 parents 9b23ca2 + 50d691a commit ce7f7c2
Showing 1 changed file with 109 additions and 0 deletions.
109 changes: 109 additions & 0 deletions allergies.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
{
"allergic_to": {
"description": [
"Given a number and a substance, indicate whether Tom is allergic ",
"to that substance.",
"Test cases for this method involve more than one assertion.",
"Each case in 'expected' specifies what the method should return for",
"the given substance."
],
"cases": [
{
"description": "no allergies means not allergic",
"score": 0,
"expected": [
{
"substance": "peanuts",
"result": false
},
{
"substance": "cats",
"result": false
},
{
"substance": "strawberries",
"result": false
}
]
},
{
"description": "is allergic to eggs",
"score": 1,
"expected": [
{
"substance": "eggs",
"result": true
}
]
},
{
"description": "allergic to eggs in addition to other stuff",
"score": 5,
"expected": [
{
"substance": "eggs",
"result": true
},
{
"substance": "shellfish",
"result": true
},
{
"substance": "strawberries",
"result": false
}
]
}
]
},
"list": {
"description": ["Given a number, list all things Tom is allergic to"],
"cases": [
{
"description": "no allergies at all",
"score": 0,
"expected": []
},
{
"description": "allergic to just eggs",
"score": 1,
"expected": ["eggs"]
},
{
"description": "allergic to just peanuts",
"score": 2,
"expected": ["peanuts"]
},
{
"description": "allergic to just strawberries",
"score": 8,
"expected": ["strawberries"]
},
{
"description": "allergic to eggs and peanuts",
"score": 3,
"expected": ["eggs", "peanuts"]
},
{
"description": "allergic to more than eggs but not peanuts",
"score": 5,
"expected": ["eggs", "shellfish"]
},
{
"description": "allergic to lots of stuff",
"score": 248,
"expected": ["strawberries", "tomatoes", "chocolate", "pollen", "cats"]
},
{
"description": "allergic to everything",
"score": 255,
"expected": ["eggs", "peanuts", "shellfish", "strawberries", "tomatoes", "chocolate", "pollen", "cats"]
},
{
"description": "ignore non allergen score parts",
"score": 509,
"expected": ["eggs", "shellfish", "strawberries", "tomatoes", "chocolate", "pollen", "cats"]
}
]
}
}

0 comments on commit ce7f7c2

Please sign in to comment.