modified test after agent modification

Judy Ngai vor 9 Jahren
Ursprung
Commit
4fd8c6b1f9
1 geänderte Dateien mit 6 neuen Zeilen und 6 gelöschten Zeilen
  1. 6 6
      spec/models/agents/aftership_agent_spec.rb

+ 6 - 6
spec/models/agents/aftership_agent_spec.rb

@@ -11,7 +11,7 @@ describe Agents::AftershipAgent do
11 11
 
12 12
     @opts = {
13 13
       "api_key" => '800deeaf-e285-9d62-bc90-j999c1973cc9',
14
-      "get" => 'trackings',
14
+      "path" => 'trackings',
15 15
       "slug" => 'usps',
16 16
       "tracking_number" => "9361289684090010005054"
17 17
     }
@@ -36,7 +36,7 @@ describe Agents::AftershipAgent do
36 36
     end
37 37
 
38 38
     it "should generate the correct checkpoint tracking url" do
39
-      @checker.options['get'] = 'last_checkpoint'
39
+      @checker.options['path'] = 'last_checkpoint'
40 40
       @checker.options['last_checkpoint_request'] = true
41 41
       expect(@checker.send(:single_or_checkpoint_tracking_url)).to eq("https://api.aftership.com/v4/last_checkpoint/usps/9361289684090010005054")
42 42
     end
@@ -53,13 +53,13 @@ describe Agents::AftershipAgent do
53 53
     end
54 54
   end
55 55
 
56
-  describe "get request must exist" do
57
-    it "should check that validation added if get does not exist" do
58
-      opts = @opts.tap { |o| o.delete('get') }
56
+  describe "path request must exist" do
57
+    it "should check that validation added if path does not exist" do
58
+      opts = @opts.tap { |o| o.delete('path') }
59 59
       @checker = Agents::AftershipAgent.new(:name => "tectonic", :options => opts)
60 60
       @checker.user = users(:bob)
61 61
       expect(@checker.save).to eq false
62
-      expect(@checker.errors.full_messages.first).to eq("You need to specify a get request")
62
+      expect(@checker.errors.full_messages.first).to eq("You need to specify a path request")
63 63
     end
64 64
   end
65 65