ubicloud/spec/routes/runtime
Jeremy Evans 4b819d3cb2 Change all create_with_id to create
It hasn't been necessary to use create_with_id since
ebc79622df, in December 2024.

I have plans to introduce:

```ruby
def create_with_id(id, values)
  obj = new(values)
  obj.id = id
  obj.save_changes
end
```

This will make it easier to use the same id when creating
multiple objects.  The first step is removing the existing
uses of create_with_id.
2025-08-06 01:55:51 +09:00
..
auth_spec.rb Return error json without error key for runtime endpoints 2024-12-24 15:35:13 +03:00
github_spec.rb Change all create_with_id to create 2025-08-06 01:55:51 +09:00
spec_helper.rb Fix the specs to avoid defining methods on Object 2025-05-03 03:33:24 +09:00