test/mollie/base_test.rb in mollie-api-ruby-4.0.0 vs test/mollie/base_test.rb in mollie-api-ruby-4.0.1

- old
+ new

@@ -9,174 +9,174 @@ end end class BaseTest < Test::Unit::TestCase def test_resource_name - assert_equal "testobjects", TestObject.resource_name + assert_equal 'testobjects', TestObject.resource_name end def test_nested_resource_name - assert_equal "testobjects/object-id/nestedobjects", TestObject::NestedObject.resource_name("object-id") + assert_equal 'testobjects/object-id/nestedobjects', TestObject::NestedObject.resource_name('object-id') end def test_setting_attributes - attributes = { my_field: "my value", extra_field: "extra" } + attributes = { my_field: 'my value', extra_field: 'extra' } object = TestObject.new(attributes) - assert_equal "my value", object.my_field + assert_equal 'my value', object.my_field assert_equal attributes, object.attributes end def test_get - stub_request(:get, "https://api.mollie.com/v2/testobjects/my-id") - .to_return(:status => 200, :body => %{{"id":"my-id"}}, :headers => {}) + stub_request(:get, 'https://api.mollie.com/v2/testobjects/my-id') + .to_return(status: 200, body: %({"id":"my-id"}), headers: {}) - resource = TestObject.get("my-id") + resource = TestObject.get('my-id') - assert_equal "my-id", resource.id + assert_equal 'my-id', resource.id end def test_nested_get - stub_request(:get, "https://api.mollie.com/v2/testobjects/object-id/nestedobjects/my-id") - .to_return(:status => 200, :body => %{{"id":"my-id", "testobject_id":"object-id"}}, :headers => {}) + stub_request(:get, 'https://api.mollie.com/v2/testobjects/object-id/nestedobjects/my-id') + .to_return(status: 200, body: %({"id":"my-id", "testobject_id":"object-id"}), headers: {}) - resource = TestObject::NestedObject.get("my-id", testobject_id: 'object-id') + resource = TestObject::NestedObject.get('my-id', testobject_id: 'object-id') - assert_equal "my-id", resource.id - assert_equal "object-id", resource.testobject_id + assert_equal 'my-id', resource.id + assert_equal 'object-id', resource.testobject_id end def test_create - stub_request(:post, "https://api.mollie.com/v2/testobjects") - .with(body: %{{"foo":1.95}}) - .to_return(:status => 201, :body => %{{"id":"my-id", "foo":1.00}}, :headers => {}) + stub_request(:post, 'https://api.mollie.com/v2/testobjects') + .with(body: %({"foo":1.95})) + .to_return(status: 201, body: %({"id":"my-id", "foo":1.00}), headers: {}) resource = TestObject.create(foo: 1.95) - assert_equal "my-id", resource.id - assert_equal BigDecimal.new("1.00"), resource.foo + assert_equal 'my-id', resource.id + assert_equal BigDecimal('1.00'), resource.foo end def test_nested_create - stub_request(:post, "https://api.mollie.com/v2/testobjects/object-id/nestedobjects") - .with(body: %{{"foo":1.95}}) - .to_return(:status => 201, :body => %{{"id":"my-id", "testobject_id":"object-id", "foo":1.00}}, :headers => {}) + stub_request(:post, 'https://api.mollie.com/v2/testobjects/object-id/nestedobjects') + .with(body: %({"foo":1.95})) + .to_return(status: 201, body: %({"id":"my-id", "testobject_id":"object-id", "foo":1.00}), headers: {}) - resource = TestObject::NestedObject.create(foo: 1.95, testobject_id: "object-id") + resource = TestObject::NestedObject.create(foo: 1.95, testobject_id: 'object-id') - assert_equal "my-id", resource.id - assert_equal "object-id", resource.testobject_id - assert_equal BigDecimal.new("1.00"), resource.foo + assert_equal 'my-id', resource.id + assert_equal 'object-id', resource.testobject_id + assert_equal BigDecimal('1.00'), resource.foo end def test_update - stub_request(:patch, "https://api.mollie.com/v2/testobjects/my-id") - .with(body: %{{"foo":1.95}}) - .to_return(:status => 201, :body => %{{"id":"my-id", "foo":1.00}}, :headers => {}) + stub_request(:patch, 'https://api.mollie.com/v2/testobjects/my-id') + .with(body: %({"foo":1.95})) + .to_return(status: 201, body: %({"id":"my-id", "foo":1.00}), headers: {}) - resource = TestObject.update("my-id", foo: 1.95) + resource = TestObject.update('my-id', foo: 1.95) - assert_equal "my-id", resource.id - assert_equal BigDecimal.new("1.00"), resource.foo + assert_equal 'my-id', resource.id + assert_equal BigDecimal('1.00'), resource.foo end def test_update_instance - stub_request(:patch, "https://api.mollie.com/v2/testobjects/my-id") - .with(body: %{{"foo":1.95}}) - .to_return(:status => 201, :body => %{{"id":"my-id", "foo":1.00}}, :headers => {}) + stub_request(:patch, 'https://api.mollie.com/v2/testobjects/my-id') + .with(body: %({"foo":1.95})) + .to_return(status: 201, body: %({"id":"my-id", "foo":1.00}), headers: {}) - resource = TestObject.new(id: "my-id") + resource = TestObject.new(id: 'my-id') resource.update(foo: 1.95) - assert_equal "my-id", resource.id - assert_equal BigDecimal.new("1.00"), resource.foo + assert_equal 'my-id', resource.id + assert_equal BigDecimal('1.00'), resource.foo end def test_nested_update - stub_request(:patch, "https://api.mollie.com/v2/testobjects/object-id/nestedobjects/my-id") - .with(body: %{{"foo":1.95}}) - .to_return(:status => 201, :body => %{{"id":"my-id", "testobject_id":"object-id", "foo":1.00}}, :headers => {}) + stub_request(:patch, 'https://api.mollie.com/v2/testobjects/object-id/nestedobjects/my-id') + .with(body: %({"foo":1.95})) + .to_return(status: 201, body: %({"id":"my-id", "testobject_id":"object-id", "foo":1.00}), headers: {}) - resource = TestObject::NestedObject.update("my-id", foo: 1.95, testobject_id: "object-id") + resource = TestObject::NestedObject.update('my-id', foo: 1.95, testobject_id: 'object-id') - assert_equal "my-id", resource.id - assert_equal "object-id", resource.testobject_id - assert_equal BigDecimal.new("1.00"), resource.foo + assert_equal 'my-id', resource.id + assert_equal 'object-id', resource.testobject_id + assert_equal BigDecimal('1.00'), resource.foo end def test_nested_update_instance - stub_request(:patch, "https://api.mollie.com/v2/testobjects/object-id/nestedobjects/my-id") - .with(body: %{{"foo":1.95}}) - .to_return(:status => 201, :body => %{{"id":"my-id", "testobject_id":"object-id", "foo":1.00}}, :headers => {}) + stub_request(:patch, 'https://api.mollie.com/v2/testobjects/object-id/nestedobjects/my-id') + .with(body: %({"foo":1.95})) + .to_return(status: 201, body: %({"id":"my-id", "testobject_id":"object-id", "foo":1.00}), headers: {}) - resource = TestObject::NestedObject.new(id: "my-id", testobject_id: "object-id") + resource = TestObject::NestedObject.new(id: 'my-id', testobject_id: 'object-id') resource.update(foo: 1.95) - assert_equal "my-id", resource.id - assert_equal "object-id", resource.testobject_id - assert_equal BigDecimal.new("1.00"), resource.foo + assert_equal 'my-id', resource.id + assert_equal 'object-id', resource.testobject_id + assert_equal BigDecimal('1.00'), resource.foo end def test_delete - stub_request(:delete, "https://api.mollie.com/v2/testobjects/my-id") - .to_return(:status => 204, :headers => {}) + stub_request(:delete, 'https://api.mollie.com/v2/testobjects/my-id') + .to_return(status: 204, headers: {}) - resource = TestObject.delete("my-id") + resource = TestObject.delete('my-id') assert_equal nil, resource end def test_delete_instance - stub_request(:delete, "https://api.mollie.com/v2/testobjects/my-id") - .to_return(:status => 204, :headers => {}) + stub_request(:delete, 'https://api.mollie.com/v2/testobjects/my-id') + .to_return(status: 204, headers: {}) - resource = TestObject.new(id: "my-id") + resource = TestObject.new(id: 'my-id') assert_equal nil, resource.delete end def test_nested_delete - stub_request(:delete, "https://api.mollie.com/v2/testobjects/object-id/nestedobjects/my-id") - .to_return(:status => 204, :headers => {}) + stub_request(:delete, 'https://api.mollie.com/v2/testobjects/object-id/nestedobjects/my-id') + .to_return(status: 204, headers: {}) - resource = TestObject::NestedObject.delete("my-id", testobject_id: "object-id") + resource = TestObject::NestedObject.delete('my-id', testobject_id: 'object-id') assert_equal nil, resource end def test_nested_delete_instance - stub_request(:delete, "https://api.mollie.com/v2/testobjects/object-id/nestedobjects/my-id") - .to_return(:status => 204, :headers => {}) + stub_request(:delete, 'https://api.mollie.com/v2/testobjects/object-id/nestedobjects/my-id') + .to_return(status: 204, headers: {}) - resource = TestObject::NestedObject.new(id: "my-id", testobject_id: "object-id") + resource = TestObject::NestedObject.new(id: 'my-id', testobject_id: 'object-id') assert_equal nil, resource.delete end def test_all - stub_request(:get, "https://api.mollie.com/v2/testobjects") - .to_return(:status => 200, :body => %{{"_embedded": {"testobjects": [{"id":"my-id"}]}}}, :headers => {}) + stub_request(:get, 'https://api.mollie.com/v2/testobjects') + .to_return(status: 200, body: %({"_embedded": {"testobjects": [{"id":"my-id"}]}}), headers: {}) resource = TestObject.all - assert_equal "my-id", resource.first.id + assert_equal 'my-id', resource.first.id end def test_nested_all - stub_request(:get, "https://api.mollie.com/v2/nestedobjects") - .to_return(:status => 200, :body => %{{"_embedded": {"nestedobjects": [{"id":"my-id"}]}}}, :headers => {}) + stub_request(:get, 'https://api.mollie.com/v2/nestedobjects') + .to_return(status: 200, body: %({"_embedded": {"nestedobjects": [{"id":"my-id"}]}}), headers: {}) resource = TestObject::NestedObject.all - assert_equal "my-id", resource.first.id + assert_equal 'my-id', resource.first.id end def test_nested_all_scoped - stub_request(:get, "https://api.mollie.com/v2/testobjects/object-id/nestedobjects") - .to_return(:status => 200, :body => %{{"_embedded": {"nestedobjects": [{"id":"my-id"}]}}}, :headers => {}) + stub_request(:get, 'https://api.mollie.com/v2/testobjects/object-id/nestedobjects') + .to_return(status: 200, body: %({"_embedded": {"nestedobjects": [{"id":"my-id"}]}}), headers: {}) resource = TestObject::NestedObject.all(testobject_id: 'object-id') - assert_equal "my-id", resource.first.id + assert_equal 'my-id', resource.first.id end end end