├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib └── rspec │ ├── api_helpers.rb │ └── api_helpers │ ├── adapter │ ├── active_model │ │ ├── adapter.rb │ │ ├── collection.rb │ │ ├── common_helpers.rb │ │ └── resource.rb │ └── jsonapi │ │ └── adapter.rb │ ├── dispatcher.rb │ ├── example_group_methods.rb │ ├── example_methods.rb │ └── version.rb └── rspec-api_helpers.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/rspec-api_helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/rspec-api_helpers/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/rspec-api_helpers/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/rspec-api_helpers/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /lib/rspec/api_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/rspec-api_helpers/HEAD/lib/rspec/api_helpers.rb -------------------------------------------------------------------------------- /lib/rspec/api_helpers/adapter/active_model/adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/rspec-api_helpers/HEAD/lib/rspec/api_helpers/adapter/active_model/adapter.rb -------------------------------------------------------------------------------- /lib/rspec/api_helpers/adapter/active_model/collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/rspec-api_helpers/HEAD/lib/rspec/api_helpers/adapter/active_model/collection.rb -------------------------------------------------------------------------------- /lib/rspec/api_helpers/adapter/active_model/common_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/rspec-api_helpers/HEAD/lib/rspec/api_helpers/adapter/active_model/common_helpers.rb -------------------------------------------------------------------------------- /lib/rspec/api_helpers/adapter/active_model/resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/rspec-api_helpers/HEAD/lib/rspec/api_helpers/adapter/active_model/resource.rb -------------------------------------------------------------------------------- /lib/rspec/api_helpers/adapter/jsonapi/adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/rspec-api_helpers/HEAD/lib/rspec/api_helpers/adapter/jsonapi/adapter.rb -------------------------------------------------------------------------------- /lib/rspec/api_helpers/dispatcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/rspec-api_helpers/HEAD/lib/rspec/api_helpers/dispatcher.rb -------------------------------------------------------------------------------- /lib/rspec/api_helpers/example_group_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/rspec-api_helpers/HEAD/lib/rspec/api_helpers/example_group_methods.rb -------------------------------------------------------------------------------- /lib/rspec/api_helpers/example_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/rspec-api_helpers/HEAD/lib/rspec/api_helpers/example_methods.rb -------------------------------------------------------------------------------- /lib/rspec/api_helpers/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/rspec-api_helpers/HEAD/lib/rspec/api_helpers/version.rb -------------------------------------------------------------------------------- /rspec-api_helpers.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/rspec-api_helpers/HEAD/rspec-api_helpers.gemspec --------------------------------------------------------------------------------