-
Notifications
You must be signed in to change notification settings - Fork 145
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
Use Minitest live integration tests instead of Shindo mocked tests #51
Conversation
… use verbose output for minitests
…update CONTRIBUTING to reflect it
…r.rb and tests/helpers/model_helper.rb to spec/helpers/model_helper.rb
…sts/models/compute/servers_tests.rb to spec/fog/google/models/compute/server_spec.rb: add create_test_disk and other utilities to minitest_helper
…s/models/compute/disks_tests.rb to spec/fog/google/models/compute/disk_spec.rb
…default base_name in test_name
…e destroyed before continuing
… destroying dependencies
…factories take an example name as an argument
…g quite a few bug fixes in the implementation of BackendServices
…bug fixes in the implementation of UrlMaps
…ing a few bug fixes in the implementation of TargetHttpProxies
…r updates to the documentation around contributing
…_test_helper; move factories into integration/factories directory
…cluding a few bug fixes in the implementation of GlobalForwardingRules
I will squash commits once we're happy with the way the merge looks. |
@plribeiro3000 @tokengeek @geemus Your input on how I've structured tests here would be greatly appreciated. |
Thats a pretty big diff. Let me take a look at it in the next weekend! Great job btw! |
Awesome, thanks! @plribeiro3000 I'll leave it to you for now, but just let me know if you have questions or need help. |
@geemus thank you for reminding me of that. @ihmccreery there are a lot of specific changes here that i wont comment since they are related to how the provider works. All the code seems to be OK. I might let something uncovered but i believe you will fix any issue this might introduce. So you have my big 👍 for all this coding and documentation. |
@ihmccreery Looking good, but appears there are some build failures, could you double check those? Thanks! |
Sorry I'm leaving this on the table for a bit; I'm caught up in other things right now. The Travis issue is just a configuration issue: the way I wrote the Rakefile, Travis is running integration tests that it's not configured to run. Related to #19, which may be a barrier to merging this. |
@ihmccreery alright, just let me know if there is anything I can do to help further here. |
Use Minitest live integration tests instead of Shindo mocked tests for `compute`
Thanks! On Tue, Jun 23, 2015 at 12:27 PM, Isaac Hollander McCreery <
|
This is a pull request to remove old Shindo tests backed by mocks in the codebase, in favor of live integration tests built on Minitest.
See the updated CONTRIBUTING for information on the design of the tests and how to run them.
This change is motivated by a few things:
There are a few outstanding issues that are related to this. I'm also opening #50 to track this whole migration from shindo to
minitest
.