-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added the documentation. * Added data for the StarWars faker. * Set up the faker classes. * Added the StarWarsFaker class to the main faker classes. * Finished implementing the StarWars faker.
- Loading branch information
Showing
9 changed files
with
943 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Faker.StarWars | ||
|
||
```cs | ||
Faker.StarWars.CallSquadron() //=> "Green" | ||
Faker.StarWars.CallSign() //=> "Grey 5" | ||
Faker.StarWars.CallNumber() //=> "Leader" | ||
Faker.StarWars.Character() //=> "Anakin Skywalker" | ||
Faker.StarWars.Droid() //=> "C-3PO" | ||
Faker.StarWars.Planet() //=> "Tatooine" | ||
Faker.StarWars.Quote() //=> "Aren’t you a little short for a Stormtrooper?" | ||
Faker.StarWars.Quote("leia_organa")() //=> "Aren’t you a little short for a Stormtrooper?" | ||
Faker.StarWars.Specie() //=> "Gungan" | ||
Faker.StarWars.Vehicle() //=> "Sandcrawler" | ||
Faker.StarWars.WookieeSentence() //=> "Yrroonn ru ooma roo ahuma ur roooarrgh hnn-rowr." | ||
``` |
Oops, something went wrong.