Skip to content

Commit b5f5ef6

Browse files
authored
Merge pull request #19 from learn-co-curriculum/fix-broken-challenge
Fix broken challenge
2 parents a659aa6 + c1146ea commit b5f5ef6

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
## Overview
44

5-
In this lab, you'll practice building forms in Sinatra by creating a basketball team sign-up sheet. Your application will have a basic html form, and will display the data from the form after it has been submitted by the user.
5+
In this lab, you'll practice building forms in Sinatra by creating a basketball
6+
team sign-up sheet. Your application will have a basic html form, and will
7+
display the data from the form after it has been submitted by the user.
68

79
## Instructions
810

@@ -31,7 +33,7 @@ In this lab, you'll practice building forms in Sinatra by creating a basketball
3133

3234
Create a route that responds to a POST request at `/team`
3335
Have the form send a POST request to this route.
34-
Upon submission, pass the submitted data to the `team.erb` template.
36+
Upon submission, pass the submitted data to the `team.erb` template.
3537

3638
5. Final Output
3739

@@ -46,6 +48,7 @@ In this lab, you'll practice building forms in Sinatra by creating a basketball
4648
Pass the tests! Make sure you read the test output carefully!
4749

4850
## Resources
51+
4952
* [Ashley William's GitHub](https://github.com/ashleygwilliams/) - [Sinatra Form Party](https://github.com/ashleygwilliams/sinatra-form-party)
5053

5154
* [Ashley William's GitHub](https://github.com/ashleygwilliams/) - [Citibike Sinatra](https://github.com/ashleygwilliams/citibike-sinatra)

spec/spec_helper.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
require_relative '../config/environment'
33
require 'rack/test'
44
require 'capybara/poltergeist'
5+
require 'capybara/dsl'
56

67
Capybara.javascript_driver = :poltergeist
78

@@ -15,4 +16,4 @@ def app
1516
Rack::Builder.parse_file('config.ru').first
1617
end
1718

18-
Capybara.app = app
19+
Capybara.app = app

0 commit comments

Comments
 (0)