-
Notifications
You must be signed in to change notification settings - Fork 1
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
Gamestat/method 1 #6
Conversation
expect(@game_teams_data).to be_an_instance_of(GameTeam) | ||
end | ||
|
||
xit 'has attributes' do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this be unskipped now that you have the dummy stats?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like a few other things in the test would need to be adjusted a little first.
This is looking good. Just one small thing, I think we can un-skip the test now that the dummy stats are in.Otherwise ready to merge. |
RSpec.describe GameTeam do | ||
before(:each) do | ||
|
||
@game_teams_data = GameTeam.new({}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be adjusted to take in one of your dummy files
Clean it up afterwards as well. |
Fixed where game-team spec test files, put them in right file, also set up dummy csv files.