Sha256: 5cb6ec75efeca21e7b69a2be5dbb63ae90f3878e29ccac82db5ee2228571b53c

Contents?: true

Size: 553 Bytes

Versions: 5

Compression:

Stored size: 553 Bytes

Contents

task :default => ["test:spec", "test:int"]

namespace :test do
  desc "Specs"
  task :spec do
    sh "rspec test/spec/api.rb"
    sh "rspec test/spec/client.rb"
    sh "rspec test/spec/proxy.rb"
    sh "rspec test/spec/collection_proxy.rb"
    sh "rspec test/spec/json_serializer.rb"
    sh "rspec test/spec/metadata.rb"
    sh "rspec test/spec/resource_metadata.rb"
    sh "rspec test/spec/property_metadata.rb"
    sh "rspec test/spec/proxy_factory.rb"
  end

  desc "Integration tests" 
  task :int do
    sh "rspec test/int/end_to_end.rb"
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rod-rest-0.5.2 Rakefile
rod-rest-0.5.1 Rakefile
rod-rest-0.5.0 Rakefile
rod-rest-0.0.1.1 Rakefile
rod-rest-0.0.1 Rakefile