Sha256: e223c916a9e8e3fac92b61d6aed5d26200e59ea13e6ef5474474eb55dc39720a
Contents?: true
Size: 982 Bytes
Versions: 1
Compression:
Stored size: 982 Bytes
Contents
describe ::PPC::API::Sogou::Plan do auth = $sogou_auth test_plan_id = [] it "can get all plans" do response = ::PPC::API::Sogou::Plan::all( auth ) is_success( response ) end it "can get all plan id" do response = ::PPC::API::Sogou::Plan::ids( auth ) is_success( response ) end it "can add plan" do test_plan = { name: "test_elong", negative: ["test"] } response = ::PPC::API::Sogou::Plan::add( auth, test_plan ) is_success( response ) test_plan_id << response[:result][0][:id] end it "can get plan by id" do response = ::PPC::API::Sogou::Plan::get( auth, test_plan_id ) is_success( response ) end it 'can update plan' do update = { id: test_plan_id[0], name:"test_plan_update"} response = ::PPC::API::Sogou::Plan::update( auth, update ) is_success( response ) end it "can delete plan" do response = ::PPC::API::Sogou::Plan::delete( auth, test_plan_id ) is_success( response ) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ppc-0.3.0 | spec/sogou/api_sogou_plan_spec.rb |