require 'spec_helper' describe Wordnik::Operation do before(:each) do @resource = Wordnik::Resource.new(:name => "word", :raw_data => JSON.parse(sample_resource_body)) @endpoint = @resource.endpoints.first @operation = @endpoint.operations.first end describe "initialization" do it "successfully initializes" do @operation.summary.should_not be_nil end it "sets parameters" do @operation.parameters.class.should == Array @operation.parameters.first.class.should == Wordnik::OperationParameter end end describe "instance methods" do it "knows if its HTTP method is GET" do @operation.http_method = "GET" @operation.get?.should == true @operation.http_method = "POST" @operation.get?.should == false @operation.http_method = "get" @operation.get?.should == true end end describe "positional parameter names" do it "returns an empty array if there are no parameters" do @operation.positional_parameter_names.should == ['word'] @operation.parameters = [] @operation.positional_parameter_names.should == [] end end end