Sha256: e9766cbcc8269db83c13ddae43255b62e57c8722e0f0e21764f5bd07e09ccf7b

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 KB

Contents

require 'helper'
require 'statsmix'

class TestStatsmix < Test::Unit::TestCase
  
  # TODO use fakwweb gem for testing
  # http://technicalpickles.com/posts/stop-net-http-dead-in-its-tracks-with-fakeweb/
  # https://github.com/chrisk/fakeweb
  # http://fakeweb.rubyforge.org/
  
  # TODO use VCR for tests
  # http://www.rubyinside.com/vcr-a-recorder-for-all-your-tests-http-interactions-4169.html
  # https://github.com/myronmarston/vcr
  
  should "initialize StatsMix API" do
    statsmix = StatsMix.new('59f08613db2691f28afe', 'xml')
    response = statsmix.list_metrics
    puts response
  end
  
  # # metrics
  # should "create metric" do
  #   
  # end
  # 
  # should "get metric" do
  # 
  # end
  # 
  # should "list metrics" do
  #   
  # end
  # 
  # should "update metric" do
  #   
  # end
  # 
  # should "delete metric" do
  #   
  # end

  # # stats
  # should "create stat" do
  #   
  # end
  # 
  # should "get stat" do
  #   
  # end
  # 
  # should "list stats" do
  #   
  # end
  # 
  # should "update stat" do
  #   
  # end
  # 
  # should "delete stat" do
  #   
  # end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
statsmix-0.0.6 test/test_statsmix.rb