-
Notifications
You must be signed in to change notification settings - Fork 3
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
(feature): bulk upload for Targets #56
Conversation
kowal
commented
Sep 12, 2019
•
edited
Loading
edited
let(:legislations_simple_csv) { fixture_file('legislations_simple.csv') } | ||
let(:litigations_simple_csv) { fixture_file('litigations_simple.csv') } | ||
let(:companies_simple_csv) { fixture_file('companies_simple.csv') } | ||
let(:legislations_csv) { fixture_file('legislations.csv') } |
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.
as @tsubik suggested some time ago, I removed _simple
suffix as it doesn't bring much value.
@@ -32,6 +32,6 @@ | |||
ghg_target { false } | |||
single_year { true } | |||
target_type { 'base_year_target' } | |||
visibility_status { Litigation::VISIBILITY.sample } | |||
visibility_status { Litigation::VISIBILITY.first } |
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.
let's remove this randomness from specs ;)
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.
Good job! =) Looks good to me.