Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Aurora Anderson Ride Share #47

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
7e01b7e
added guts of Rakefile
auroralemieux Mar 6, 2017
9c33459
added empty methods and spec files with basic stubs, spec_helper guts…
auroralemieux Mar 6, 2017
588c5e4
added coverage to gitignore
auroralemieux Mar 6, 2017
0961d7b
stubbed out descriptions of methods with comments, init instance vari…
auroralemieux Mar 6, 2017
6681014
passing is a class tests
auroralemieux Mar 6, 2017
3c6b37f
added attr_reader ids for driver and rider
auroralemieux Mar 6, 2017
b619417
finished fleshing out its of specs
auroralemieux Mar 7, 2017
2e34b95
whoops, finished fleshing out its for driver
auroralemieux Mar 7, 2017
5855cf2
got more specific with spec for average rating
auroralemieux Mar 7, 2017
d20553b
completed and passing all self.all tests
auroralemieux Mar 7, 2017
4a3f499
driver get_trips method passing tests
auroralemieux Mar 7, 2017
de25b58
added self.find method for drivers -- need to fix csv headers line re…
auroralemieux Mar 7, 2017
ae73856
WIP -- get_driver and get_rider Trip methods not working
auroralemieux Mar 7, 2017
91b3ef4
fixed driver/rider_id mixup in readin from file
auroralemieux Mar 7, 2017
c4997a6
added line to delete the headers row upon csv import
auroralemieux Mar 7, 2017
0f2d1c3
all tests written and passing
auroralemieux Mar 7, 2017
6732d17
cleaning up removing pseudocode, extra spaces; added check for num va…
auroralemieux Mar 7, 2017
770a57c
added noDataError class, added tests for driver.all
auroralemieux Mar 7, 2017
f47749a
added specs for trip self.all
auroralemieux Mar 7, 2017
21014a4
no idea
auroralemieux Mar 8, 2017
734c5fb
cleaned up spacing, deleted empty initialize test its, added tests fo…
auroralemieux Mar 8, 2017
4ec9a16
attempted addition of csv file with new content -- not implemented
auroralemieux Mar 13, 2017
37d436f
csv files and ruby helper to read/transform new csv
auroralemieux Mar 13, 2017
62dbd2f
fixed typo
auroralemieux Mar 13, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/coverage/
10 changes: 9 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
# Fill me in!
require 'rake/testtask'

Rake::TestTask.new do |t|
t.libs = ["lib"]
t.warning = true
t.test_files = FileList['specs/*_spec.rb']
end

task default: :test
5 changes: 5 additions & 0 deletions coverage/.last_run.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"result": {
"covered_percent": 100.0
}
}
Loading