forked from turingschool-examples/enumerable-challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3bfdf7a
commit 81848f9
Showing
2 changed files
with
20 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,22 @@ | ||
# Enumerable Challenges | ||
|
||
More instructions and scaffolding coming soon. | ||
This repository follows our hero during a typical work day at WidgetCo. Over the course of the day, our hero will face coworkers who will present challenges that need some code written to solve a problem they're facing. | ||
|
||
You'll write tests based on the challenge and then an implementation to make those tests pass. | ||
|
||
How you structure your tests and your code is up to you (and part of the exercise). You can use your own sample data and structure it anyway you like. | ||
|
||
You should make the best possible use of Ruby's Enumerable API and TDD strategies. Your implementations should go in the `./lib` directory and your tests should go in the `./test` directory. | ||
|
||
## Submission Instructions | ||
|
||
* One member of your pair/group should [fork][] this repository to his or her account. | ||
* As you create files and solve the challenges, you should make frequent commits. | ||
* At the end of the session, you should create a pull request. | ||
|
||
[fork]: https://github.com/turingschool-examples/enumerable-challenges | ||
|
||
## Learning Goals | ||
|
||
* Demonstrate an understanding of the methods Ruby's Enumerable has to offer. | ||
* Implement TDD by creating tests and sample data from scratch. |
File renamed without changes.