-
Notifications
You must be signed in to change notification settings - Fork 990
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introducing test containers to the testing fw
- Loading branch information
Showing
5 changed files
with
122 additions
and
77 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"inventory": { | ||
"mountain_bikes": [ | ||
{ | ||
"id": "bike:1", | ||
"model": "Phoebe", | ||
"description": "This is a mid-travel trail slayer that is a fantastic daily driver or one bike quiver. The Shimano Claris 8-speed groupset gives plenty of gear range to tackle hills and there's room for mudguards and a rack too. This is the bike for the rider who wants trail manners with low fuss ownership.", | ||
"price": 1928, | ||
"specs": { | ||
"material": "carbon", | ||
"weight": 13.1 | ||
}, | ||
"colors": [ | ||
"black", | ||
"silver" | ||
] | ||
}, | ||
{ | ||
"id": "bike:2", | ||
"model": "Quaoar", | ||
"description": "Redesigned for the 2020 model year, this bike impressed our testers and is the best all-around trail bike we've ever tested. The Shimano gear system effectively does away with an external cassette, so is super low maintenance in terms of wear and tear. All in all it's an impressive package for the price, making it very competitive.", | ||
"price": 2072, | ||
"specs": { | ||
"material": "aluminium", | ||
"weight": 7.9 | ||
}, | ||
"colors": [ | ||
"black", | ||
"white" | ||
] | ||
}, | ||
{ | ||
"id": "bike:3", | ||
"model": "Weywot", | ||
"description": "This bike gives kids aged six years and older a durable and uberlight mountain bike for their first experience on tracks and easy cruising through forests and fields. A set of powerful Shimano hydraulic disc brakes provide ample stopping ability. If you're after a budget option, this is one of the best bikes you could get.", | ||
"price": 3264, | ||
"specs": { | ||
"material": "alloy", | ||
"weight": 13.8 | ||
} | ||
} | ||
] | ||
} | ||
} |