spec/live/app_spec.rb in zendesk_api-1.1.3 vs spec/live/app_spec.rb in zendesk_api-1.2.1
- old
+ new
@@ -26,15 +26,15 @@
if body["status"] == "failed"
fail "Could not create app: #{body.inspect}"
end
app.id = body["app_id"]
- app.short_description = "My Test App"
+ app.author_name = "Mr. Sprinkles"
+ app.author_email = "sprinkle@example.com"
VCR.use_cassette("app_save") { app.save! }
- app.short_description.should == "My Test App"
- app.author_name.should == "Skip Moore"
+ app.author_name.should == "Mr. Sprinkles"
VCR.use_cassette("app_destroy") { app.destroy! }
end
end