Sha256: 8182789524e4f23ffa5fbcc3d1aac1f40cfc1448973ee6c2182639b77605176e

Contents?: true

Size: 597 Bytes

Versions: 1

Compression:

Stored size: 597 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + '/spec_helper')

describe Enrycher do
  describe "process" do
    it "should take a string" do
      Enrycher.respond_to?(:process, "TEXT!").should eq true
    end
    
    it "should set the text variable"
    it "should make the HTTP request"
    
    describe "make request" do
      context "success!" do
        it "should return parsed XML"
      end

      context "failure!" do
        it "should return bupkis"
      end
    end
  end
  
  describe "print" do
    it "should probably do something more than print the parsed XML"
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
enrycher-0.1.0 spec/enrycher_spec.rb